Skip to content

Commit c2d8146

Browse files
committed
Ensure that stderr is appearing in the GitHub actions output.
1 parent 5df0937 commit c2d8146

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test_clang_win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
ADDITIONAL_FLAGS: ${{ format('-std={0} {1}', matrix.cpp_version, matrix.buildmode) }}
4545
OUT_DIR_NAME: win_clang_generic
4646
run: |
47-
& ".\make_win_gcclike.ps1"
47+
& ".\make_win_gcclike.ps1" 2>&1

.github/workflows/test_gcc_win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
CXX: g++
4444
ADDITIONAL_FLAGS: ${{ format('-Wa,-mbig-obj -std={0} {1}', matrix.cpp_version, matrix.buildmode) }}
4545
IS_MSYS: 1
46-
run: make generic
46+
run: make generic 2>&1

0 commit comments

Comments
 (0)