From a6c636a7445ad40184f98cb52cd9c1ec04e675df Mon Sep 17 00:00:00 2001 From: Geoff Martin Date: Mon, 9 Dec 2024 17:36:01 +0000 Subject: [PATCH] Don't run tests when Iceoryx enabled on Ubuntu ARM CI build. --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 19b893a..9b7d2c4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,7 +58,7 @@ jobs: - name: Run tests (default features) run: cargo test --verbose - name: Run tests (with Iceoryx) - if: ${{ ! startsWith(matrix.os-arch.os,'window') }} + if: ${{ ! startsWith(matrix.os-arch.os,'window') }} && if: ${{ ! startsWith(matrix.os-arch.os,'ubuntu-22.04') }} run: cargo test --features iceoryx --verbose - name: Run tests (with symbol prefixing) run: cargo test --features prefix_symbols --verbose