We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 712fa86 commit df7bc43Copy full SHA for df7bc43
.github/workflows/emscripten.yml
@@ -832,6 +832,10 @@ jobs:
832
emrun.bat --browser="firefox.exe" --kill_exit --timeout 60 --browser-args="--headless" DynamicLibraryManagerTests.html
833
echo "Running CppInterOpTests in Chromium"
834
emrun.bat --browser="chrome.exe" --kill_exit --timeout 60 --browser-args="--headless" CppInterOpTests.html
835
+ if ($LASTEXITCODE -ne 0) {
836
+ Write-Error "Command failed with exit code $LASTEXITCODE"
837
+ exit $LASTEXITCODE
838
+ }
839
echo "Running DynamicLibraryManagerTests in Chromium"
840
emrun.bat --browser="chrome.exe" --kill_exit --timeout 60 --browser-args="--headless --no-sandbox" DynamicLibraryManagerTests.html
841
cd ..\..
0 commit comments