Skip to content
Snippets Groups Projects
Commit e4da9d82 authored by Erik Faye-Lund's avatar Erik Faye-Lund Committed by Dylan Baker
Browse files

ci/windows: add back build-error detection


This was accidentally broken while refactoring the script.

Fixes: bf3c772e ("ci: Improve vs2019 mesa_build.ps1 for remove the need of cmd.exe")
Reviewed-by: default avatarYonggang Luo <luoyonggang@gmail.com>
Part-of: <mesa/mesa!16965>
(cherry picked from commit 003d0528)
parent c4f77030
No related branches found
No related tags found
No related merge requests found
......@@ -40,8 +40,13 @@ meson --default-library=shared -Dzlib:default_library=static --buildtype=release
-Dbuild-tests=true -Dwerror=true -Dwarning_level=2 -Dzlib:warning_level=1 -Dlibelf:warning_level=1 `
$sourcedir
ninja install -j32
meson test --num-processes 32
if ($?) {
ninja install -j32
}
if ($?) {
meson test --num-processes 32
}
$buildstatus = $?
Pop-Location
......
......@@ -679,7 +679,7 @@
"description": "ci/windows: add back build-error detection",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "bf3c772e5e5854d60dcddceb29a6849701423320"
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment