Skip to content

Commit

Permalink
Building with symbol prefixing as part of the CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Dec 6, 2024
1 parent d8a8fe0 commit de101f1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ jobs:
if: startsWith(matrix.os,'ubuntu')
run: sudo apt-get -y install libacl1-dev

- name: Install LLVM toolchain
if: startsWith(matrix.os,'macos')
run: |
brew install llvm@19
ls /opt/homebrew/opt/llvm@19/bin
echo "/opt/homebrew/opt/llvm@19/bin" >> $GITHUB_PATH
- name: Install Rust toolchain
run: |
rustup show
Expand All @@ -55,13 +62,21 @@ jobs:
if: ${{ ! startsWith(matrix.os,'windows') }}
run: cargo build -p zenoh-plugin-dds --features dds_shm --verbose --all-targets

- name: Build zenoh-plugin-dds (with prefix_symbols)
if: ${{ ! startsWith(matrix.os,'windows') }}
run: cargo build -p zenoh-plugin-dds --features prefix_symbols --verbose --all-targets

- name: Build zenoh-bridge-dds
run: cargo build -p zenoh-bridge-dds --verbose --all-targets

- name: Build zenoh-bridge-dds (with dds_shm)
if: ${{ ! startsWith(matrix.os,'windows') }}
run: cargo build -p zenoh-bridge-dds --features dds_shm --verbose --all-targets

- name: Build zenoh-bridge-dds (with prefix_symbols)
if: ${{ ! startsWith(matrix.os,'windows') }}
run: cargo build -p zenoh-bridge-dds --features prefix_symbols --verbose --all-targets

- name: Run tests
run: cargo test --verbose

Expand Down

0 comments on commit de101f1

Please sign in to comment.