Skip to content

Fix workflow

Fix workflow #804

Workflow file for this run

#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#
name: Rust
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install ACL
if: startsWith(matrix.os,'ubuntu')
run: sudo apt-get -y install libacl1-dev
- name: Install Rust toolchain
run: |
rustup show
rustup component add rustfmt clippy
- name: Code format check
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all --examples -- -D warnings
- name: Build zenoh-plugin-dds
run: cargo build -p zenoh-plugin-dds --verbose --all-targets
- name: Build zenoh-plugin-dds (with dds_shm)
run: cargo build -p zenoh-plugin-dds --features dds_shm --verbose --all-targets
- name: Build zenoh-bridge-dds
run: cargo build -p zenoh-bridge-dds --verbose --all-targets
- name: Build zenoh-bridge-dds (with dds_shm)
run: cargo build -p zenoh-bridge-dds --features dds_shm --verbose --all-targets
- name: Run tests
run: cargo test --verbose