We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca39da6 + aea7c18 commit aa0ba82Copy full SHA for aa0ba82
1 file changed
.gitlab-ci.yml
@@ -179,7 +179,7 @@ test:msvc-meson:
179
- job: "build:msvc-meson"
180
artifacts: true
181
script:
182
- - meson test -C build --list | Select-Object -Skip 1 | Select-String .* | Group-Object -Property { $_.LineNumber % $Env:CI_NODE_TOTAL + 1 } | Where-Object Name -EQ $Env:CI_NODE_INDEX | ForEach-Object { meson test -C build --no-rebuild --print-errorlogs $_.Group }
+ - meson test -C build --list | Select-Object -Skip 1 | Select-String .* | Group-Object -Property { $_.LineNumber % $Env:CI_NODE_TOTAL + 1 } | Where-Object Name -EQ $Env:CI_NODE_INDEX | ForEach-Object { meson test -C build --no-rebuild --print-errorlogs $_.Group; if (!$?) { exit $LASTEXITCODE } }
183
parallel: 10
184
185
test:fuzz-smoke-tests:
0 commit comments