Refactor transport layer #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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, <[email protected]> | |
# | |
name: build-check | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
run_tests: | |
name: Run unit tests on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build & run tests | |
run: | | |
sudo apt install -y ninja-build | |
CMAKE_GENERATOR=Ninja make test | |
check_format: | |
name: Check codebase format with clang-format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run clang-format dry-run | |
run: find include/ src/ tests/ examples/ -iname "*.ino" -o -iname "*.h" -o -iname "*.c" | xargs clang-format -n -Werror | |
modular_build: | |
name: Modular build on ubuntu-latest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
feature_publication: [1, 0] | |
feature_subscription: [1, 0] | |
feature_queryable: [1, 0] | |
feature_query: [1, 0] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run docker image | |
run: docker run --name zenoh_router --init --net host -d eclipse/zenoh:master | |
- name: Build project | |
run: | | |
sudo apt install -y ninja-build | |
CMAKE_GENERATOR=Ninja make | |
python3 ./build/tests/modularity.py --pub $Z_FEATURE_PUBLICATION --sub $Z_FEATURE_SUBSCRIPTION --queryable $Z_FEATURE_QUERYABLE --query $Z_FEATURE_QUERY | |
timeout-minutes: 5 | |
env: | |
Z_FEATURE_PUBLICATION: ${{ matrix.feature_publication }} | |
Z_FEATURE_SUBSCRIPTION: ${{ matrix.feature_subscription }} | |
Z_FEATURE_QUERYABLE: ${{ matrix.feature_queryable }} | |
Z_FEATURE_QUERY: ${{ matrix.feature_query }} | |
- name: Stop docker image | |
if: always() | |
run: | | |
docker stop zenoh_router | |
docker rm zenoh_router |