Skip to content

Commit

Permalink
Don't run tests when Iceoryx enabled on Ubuntu ARM CI build.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Dec 9, 2024
1 parent fdb068b commit 0a73325
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs:
run: cargo build --features prefix_symbols --verbose
- name: Run tests (default features)
run: cargo test --verbose
- name: Run tests (with Iceoryx)
if: ${{ ! (startsWith(matrix.os-arch.os,'window') || startsWith(matrix.os-arch.os,'ubuntu-22.04')) }}
run: cargo test --features iceoryx --verbose
# Currently disabled as it fails on ubuntu-22.04 ARM and ubuntu-latest X86 builds with link errors
# Note links successfully when incorporated into Zenoh DDS plugin
# - name: Run tests (with Iceoryx)
# if: ${{ ! startsWith(matrix.os-arch.os,'window') }}
# run: cargo test --features iceoryx --verbose
- name: Run tests (with symbol prefixing)
run: cargo test --features prefix_symbols --verbose

0 comments on commit 0a73325

Please sign in to comment.