Skip to content

Commit 46d9326

Browse files
Add matrix configuration
Signed-off-by: Sebastian Schildt <[email protected]>
1 parent 2e52169 commit 46d9326

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/buildcheck.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,20 @@ on:
77

88
jobs:
99
buildtest:
10+
continue-on-error: ${{ matrix.experimental }}
11+
strategy:
12+
matrix: # this needs to be arrays
13+
vss-tools-version: [master, master]
14+
experimental: [false]
15+
include: # this need to be single entities
16+
- vss-tools-version: v4
17+
experimental: true
1018
name: Build Test
1119
runs-on: ubuntu-latest
1220

1321
steps:
22+
continue-on-error: ${{ matrix.experimental }}
23+
1424
- uses: actions/checkout@v4
1525
with:
1626
submodules: true
@@ -23,7 +33,7 @@ jobs:
2333
pip install pytest
2434
# idlc currently used both during python test and later in this script
2535
pip install cyclonedds
26-
pip install git+https://github.com/COVESA/vss-tools@master
36+
pip install git+https://github.com/COVESA/vss-tools@${{ matrix.vss-tools-version }}
2737
sudo apt install -y protobuf-compiler
2838
echo done!
2939

0 commit comments

Comments
 (0)