-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da72d8b
commit 1d6bba7
Showing
3 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
on: | ||
push: | ||
|
||
env: | ||
CMAKE_VERSION: 3.27.4 | ||
|
||
jobs: | ||
build-deb: | ||
strategy: | ||
matrix: | ||
include: | ||
- container: debian:bookworm | ||
label: bookworm-aarch64 | ||
runs-on: buildjet-8vcpu-ubuntu-2204-arm | ||
- container: debian:bookworm | ||
label: bookworm-x86_64 | ||
runs-on: buildjet-8vcpu-ubuntu-2204 | ||
container: ${{ matrix.container }} | ||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: depends | ||
run: | | ||
apt-get update | ||
apt-get install -qqy \ | ||
build-essential \ | ||
libabsl-dev \ | ||
libboost-all-dev \ | ||
libgrpc++-dev \ | ||
libprotobuf-dev \ | ||
pkg-config \ | ||
ninja-build \ | ||
protobuf-compiler-grpc \ | ||
git \ | ||
wget | ||
- name: download cmake | ||
run: | | ||
ARCH=$(uname -m) | ||
wget --quiet https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-$ARCH.sh | ||
chmod +x cmake-${CMAKE_VERSION}-linux-$ARCH.sh | ||
./cmake-${CMAKE_VERSION}-linux-$ARCH.sh --skip-license --prefix=/usr | ||
- name: remove examples | ||
run: sed -i '/add_subdirectory.examples/d' src/viam/CMakeLists.txt | ||
- name: create build | ||
run: mkdir build | ||
- name: cmake | ||
working-directory: ./build | ||
run: cmake .. -G Ninja | ||
- name: build | ||
working-directory: ./build | ||
run: ninja libviamsdk.so && cpack | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: debian-${{ matrix.label }} | ||
path: build/viam-cpp-sdk-*.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,5 +253,6 @@ add_subdirectory(tests) | |
set(CPACK_GENERATOR "DEB") | ||
set(CPACK_ARCHIVE_COMPONENT_INSTALL ON) | ||
set(CPACK_COMPONENTS_ALL viam-cpp-sdk_dev) | ||
set(CPACK_PACKAGE_CONTACT "OY TIS") | ||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libprotobuf32, libgrpc++1.51, libabsl20220623") | ||
include(CPack) |