From 7b2325aba7c4726aa51f0852fc42679308ee41c6 Mon Sep 17 00:00:00 2001 From: Sebastian Schildt Date: Tue, 17 Sep 2024 12:01:12 +0200 Subject: [PATCH] Add matrix configuration Signed-off-by: Sebastian Schildt --- .github/workflows/buildcheck.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/buildcheck.yml b/.github/workflows/buildcheck.yml index aa639255..0a7a23d7 100644 --- a/.github/workflows/buildcheck.yml +++ b/.github/workflows/buildcheck.yml @@ -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 @@ -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!