From fc9449a2d5b9dc57e2a664e6abb1f9a49dba3e48 Mon Sep 17 00:00:00 2001 From: Martins Mozeiko Date: Thu, 25 Jan 2024 11:10:09 -0800 Subject: [PATCH] make sure github action fails on error --- .github/workflows/builds.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 897f9883..d73f27c3 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -20,9 +20,9 @@ jobs: shell: cmd run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 - call build raddbg msvc debug - call build raddbg_from_pdb msvc debug - call build raddbg_from_dwarf msvc debug - call build raddbg clang debug - call build raddbg_from_pdb clang debug - call build raddbg_from_dwarf clang debug + call build raddbg msvc debug || exit /b 1 + call build raddbg_from_pdb msvc debug || exit /b 1 + call build raddbg_from_dwarf msvc debug || exit /b 1 + call build raddbg clang debug || exit /b 1 + call build raddbg_from_pdb clang debug || exit /b 1 + call build raddbg_from_dwarf clang debug || exit /b 1