Skip to content

Run tests with iceoryx feature enabled. #160

Run tests with iceoryx feature enabled.

Run tests with iceoryx feature enabled. #160

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-11", "macos-ventura", ["ubuntu-22.04", "ARM64"]]
runs-on: [self-hosted, "${{ matrix.os }}"]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install apt dependencies
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == '["ubuntu-22.04", "ARM64"]' }}
run: sudo apt-get -y install acl-dev g++-multilib
- name: Print OS
run: echo "Matrix OS is: ${{ matrix.os }}"

Check failure on line 28 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
- 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
rustup component add rustfmt clippy
- name: Code format check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Clippy check
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Build (default features)
run: cargo build --verbose
- name: Build (with Iceoryx)
if: ${{ ! startsWith(matrix.os,'window') }}
run: cargo build --features iceoryx --verbose
- name: Build (with symbol prefixing)
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,'window') }}
# run: cargo test --features iceoryx --verbose
- name: Run tests (with symbol prefixing)
run: cargo test --features prefix_symbols --verbose