exclude some matrix combinations

This commit is contained in:
otavepto 2024-05-20 04:16:43 +03:00
parent 9236f8c70b
commit 3f68c5ab12
2 changed files with 20 additions and 3 deletions

View File

@ -31,10 +31,16 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
## notice how on linux everything is lowercase, `cd GBE_Build`, then: `make help` ## notice how on linux everything is lowercase, `cd GBE_Build`, then: `make help`
cfg: [ 'debug', 'release', 'experimentaldebug', 'experimentalrelease', ]
arch: [ 'x64', 'x32', ]
prj: [ 'GenerateInterfaces', 'SteamClient', 'SteamEmu', ] prj: [ 'GenerateInterfaces', 'SteamClient', 'SteamEmu', ]
arch: [ 'x64', 'x32', ]
cfg: [ 'debug', 'release', 'experimentaldebug', 'experimentalrelease', ]
exclude:
- prj: 'GenerateInterfaces'
cfg: 'experimentaldebug'
- prj: 'GenerateInterfaces'
cfg: 'experimentalrelease'
steps: steps:
### clone branch ### clone branch

View File

@ -34,6 +34,17 @@ jobs:
arch: [ 'x64', 'Win32', ] arch: [ 'x64', 'Win32', ]
cfg: [ 'Debug', 'Release', 'ExperimentalDebug', 'ExperimentalRelease', ] cfg: [ 'Debug', 'Release', 'ExperimentalDebug', 'ExperimentalRelease', ]
exclude:
- prj: 'GameOverlayRenderer'
cfg: 'Debug'
- prj: 'GameOverlayRenderer'
cfg: 'Release'
- prj: 'GenerateInterfaces'
cfg: 'ExperimentalDebug'
- prj: 'GenerateInterfaces'
cfg: 'ExperimentalRelease'
steps: steps:
### on Windows Git will auto change line ending to CRLF, not preferable ### on Windows Git will auto change line ending to CRLF, not preferable
- name: Ensure LF line ending - name: Ensure LF line ending