Update .gitea/workflows/matrix.yml
Test Gitea Actions support Matrix? / build (12, ubuntu-latest) (push) Has been cancelled
Test Gitea Actions support Matrix? / build (12, windows-latest) (push) Has been cancelled
Test Gitea Actions support Matrix? / build (14, ubuntu-latest) (push) Has been cancelled
Test Gitea Actions support Matrix? / build (14, windows-latest) (push) Has been cancelled
Test Gitea Actions support Matrix? / build (16, ubuntu-latest) (push) Has been cancelled
Test Gitea Actions support Matrix? / build (16, windows-latest) (push) Has been cancelled
Build Workflow / Build (push) Successful in 1m55s
Build Workflow / Deploy (push) Successful in 1m16s

This commit is contained in:
2023-07-16 23:57:26 +02:00
parent f36662cece
commit 3d228364a9
+9
View File
@@ -9,6 +9,15 @@ jobs:
# In this case there can be up to 6 builds (3 windows runner builds and 3 ubuntu runner builds) # In this case there can be up to 6 builds (3 windows runner builds and 3 ubuntu runner builds)
node-version: [12, 14, 16] node-version: [12, 14, 16]
supported-os: [ubuntu-latest, windows-latest] supported-os: [ubuntu-latest, windows-latest]
# The following block will ad a 7th using node version 18 with ubuntu (which is not in the above matrix by default)
# This way there would be no Windows Node 18 build for example
include:
- node-version: 18
supported-os: ubuntu-latest
# Like include it is also possible to exclude combinations.
exclude:
- node-version: 12
- supported-os: windows-latest
# Uses the defined supported-os variable from above depending on which of the 6 builds the runner gets # Uses the defined supported-os variable from above depending on which of the 6 builds the runner gets
runs-on: ${{ matrix.supported-os }} runs-on: ${{ matrix.supported-os }}
steps: steps: