Skip to content

Commit

Permalink
Run tests with iceoryx feature enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Dec 6, 2024
1 parent 383864b commit 26139f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Print OS
run: |
os="${{ toJson(matrix.os) }}"
echo "$os"
- name: Install apt dependencies
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == '["ubuntu-22.04","ARM64"]' }}
if: ${{ matrix.os == 'ubuntu-latest' || toJson(matrix.os) == '["ubuntu-22.04","ARM64"]' }}
run: sudo apt-get -y install acl-dev g++-multilib
- name: Install LLVM toolchain
if: startsWith(matrix.os,'macos')
Expand Down

0 comments on commit 26139f1

Please sign in to comment.