Skip to content

Commit

Permalink
Add matrix configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schildt <[email protected]>
  • Loading branch information
SebastianSchildt committed Sep 17, 2024
1 parent 2e52169 commit 46d9326
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@ on:

jobs:
buildtest:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix: # this needs to be arrays
vss-tools-version: [master, master]
experimental: [false]
include: # this need to be single entities
- vss-tools-version: v4
experimental: true
name: Build Test
runs-on: ubuntu-latest

steps:
continue-on-error: ${{ matrix.experimental }}

- uses: actions/checkout@v4
with:
submodules: true
Expand All @@ -23,7 +33,7 @@ jobs:
pip install pytest
# idlc currently used both during python test and later in this script
pip install cyclonedds
pip install git+https://github.com/COVESA/vss-tools@master
pip install git+https://github.com/COVESA/vss-tools@${{ matrix.vss-tools-version }}
sudo apt install -y protobuf-compiler
echo done!
Expand Down

0 comments on commit 46d9326

Please sign in to comment.