-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: moved modular tests to its own workflow
- Loading branch information
1 parent
01f1e51
commit 1420795
Showing
2 changed files
with
57 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# | ||
# 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: | ||
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 | ||
continue-on-error: true | ||
|
||
- name: Build project | ||
run: | | ||
make all | ||
./build/tests/z_modular_test $Z_FEATURE_PUBLICATION $Z_FEATURE_SUBSCRIPTION $Z_FEATURE_QUERYABLE $Z_FEATURE_QUERY | ||
continue-on-error: true | ||
env: | ||
BUILD_TYPE: Debug | ||
ZENOH_DEBUG: 3 | ||
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 | ||
run: | | ||
docker stop zenoh_router | ||
docker rm zenoh_router |
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