Skip to content

Updated bindgen to 0.68 (#17) #65

Updated bindgen to 0.68 (#17)

Updated bindgen to 0.68 (#17) #65

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-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install ACL
if: startsWith(matrix.os,'ubuntu')
run: sudo apt-get -y install acl-dev
- name: Build (without Iceoryx)
run: cargo build --verbose
- name: Build (with Iceoryx)
run: cargo build --features iceoryx --verbose
- name: Run tests (without Iceoryx)
run: cargo test --verbose
- name: Run tests (with Iceoryx)
run: cargo test --features iceoryx --verbose