Update .gitea/workflows/matrix.yml
Test Gitea Actions support Matrix? / build (14, ubuntu-latest) (push) Successful in 49s
Test Gitea Actions support Matrix? / build (16, ubuntu-latest) (push) Successful in 24s
Test Gitea Actions support Matrix? / build (18, ubuntu-latest) (push) Successful in 30s
Build Workflow / Build (push) Failing after 4s
Build Workflow / Deploy (push) Has been skipped

This commit is contained in:
2023-07-17 02:28:47 +02:00
parent 324ed0643b
commit 841ac471f3
+3 -5
View File
@@ -6,19 +6,17 @@ jobs:
strategy: strategy:
matrix: matrix:
# This will let the build run with all combinations of the following variables # This will let the build run with all combinations of the following variables
# 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 4 builds (2 windows runner builds and 2 ubuntu runner builds)
# Keys can be self defined (except: include & exclude) # Keys can be self defined (except: include & exclude)
node-version: [12, 14, 16] node-version: [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) # The following block will ad a 5th 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 # This way there would be no Windows Node 18 build for example
include: include:
- node-version: 18 - node-version: 18
supported-os: ubuntu-latest supported-os: ubuntu-latest
# Like include it is also possible to exclude combinations. # Like include it is also possible to exclude combinations.
exclude: exclude:
- node-version: 12
supported-os: windows-latest
- node-version: 14 - node-version: 14
supported-os: windows-latest supported-os: windows-latest
- node-version: 16 - node-version: 16