Skip to content

Commit

Permalink
build: add modular build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Oct 18, 2023
1 parent c2b6bf3 commit 8ee955d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,24 @@ jobs:
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:
- uses: actions/checkout@v2
- name: Build project
run: make all
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 }}

0 comments on commit 8ee955d

Please sign in to comment.