Skip to content

Commit

Permalink
build: moved modular tests to its own workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Oct 30, 2023
1 parent 4b1aa50 commit e00ed6a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 36 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build-check.yaml
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, <zenoh@zettascale.tech>
#
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
37 changes: 1 addition & 36 deletions .github/workflows/build-shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,39 +50,4 @@ jobs:
env:
BUILD_TYPE: Debug
BUILD_SHARED_LIBS: ON
ZENOH_DEBUG: 3

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@v2

- 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
ZENOH_DEBUG: 3

0 comments on commit e00ed6a

Please sign in to comment.