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 7b2325a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ 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

Expand All @@ -23,7 +31,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 7b2325a

Please sign in to comment.