Skip to content

Commit a29fd9c

Browse files
committed
Fix failures CI
1 parent e91ec42 commit a29fd9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/failures.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ jobs:
9898
if: matrix.libgccjit_version.gcc != 'libgccjit12.so'
9999
id: tests
100100
run: |
101-
${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --clean --build-sysroot --test-failing-rustc ${{ matrix.libgccjit_version.extra }} | tee output_log
101+
${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --clean --build-sysroot --test-failing-rustc ${{ matrix.libgccjit_version.extra }} 2>&1 | tee output_log
102102
rg --text "test result" output_log >> $GITHUB_STEP_SUMMARY
103103
104104
- name: Run failing ui pattern tests for ICE
105105
# TODO: re-enable those tests for libgccjit 12.
106106
if: matrix.libgccjit_version.gcc != 'libgccjit12.so'
107107
id: ui-tests
108108
run: |
109-
${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --test-failing-ui-pattern-tests ${{ matrix.libgccjit_version.extra }} | tee output_log_ui
109+
${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --test-failing-ui-pattern-tests ${{ matrix.libgccjit_version.extra }} 2>&1 | tee output_log_ui
110110
if grep -q "the compiler unexpectedly panicked" output_log_ui; then
111111
echo "Error: 'the compiler unexpectedly panicked' found in output logs. CI Error!!"
112112
exit 1

0 commit comments

Comments
 (0)