Skip to content

Commit

Permalink
remove unnecessary build artifacts (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin authored Aug 5, 2024
1 parent 7a921aa commit 414ef99
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,18 @@ jobs:
- name: Build examples with zenoh-c as subbroject and static library and in debug mode
shell: bash
run: |
mkdir -p build_examples_subproj && cd build_examples_subproj
mkdir -p build_examples && cd build_examples
cmake ../examples -DCMAKE_BUILD_TYPE=Debug -DZENOHC_LIB_STATIC=TRUE
cmake --build . --config Debug
cd .. && rm -rf build_examples
- name: Build examples with zenoh-c as installed package
shell: bash
run: |
mkdir -p build_examples_findproj && cd build_examples_findproj
mkdir -p build_examples && cd build_examples
cmake ../examples -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/local -DZENOHC_SOURCE=PACKAGE
cmake --build . --config Release
cd .. && rm -rf build_examples
- name: Run rust tests
run: cargo test --verbose --release --features=logger-autoinit
Expand Down

0 comments on commit 414ef99

Please sign in to comment.