File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
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
10
18
name : Build Test
11
19
runs-on : ubuntu-latest
12
20
13
21
steps :
22
+ continue-on-error : ${{ matrix.experimental }}
23
+
14
24
- uses : actions/checkout@v4
15
25
with :
16
26
submodules : true
23
33
pip install pytest
24
34
# idlc currently used both during python test and later in this script
25
35
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 }}
27
37
sudo apt install -y protobuf-compiler
28
38
echo done!
29
39
You can’t perform that action at this time.
0 commit comments