diff options
| author | Antoni Boucher <bouanto@zoho.com> | 2024-12-14 16:40:05 -0500 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2024-12-14 16:40:05 -0500 |
| commit | a29fd9cc3472d9274ea6a97a970e0d8729493691 (patch) | |
| tree | 4587f442879c55ddc75d75900c8e95229306a8d2 | |
| parent | e91ec42e3343698cd66aa6d97f62fa7de172eb74 (diff) | |
| download | rust-a29fd9cc3472d9274ea6a97a970e0d8729493691.tar.gz rust-a29fd9cc3472d9274ea6a97a970e0d8729493691.zip | |
Fix failures CI
| -rw-r--r-- | .github/workflows/failures.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/failures.yml b/.github/workflows/failures.yml index 2c1ed9ad429..a7a20b6bc81 100644 --- a/.github/workflows/failures.yml +++ b/.github/workflows/failures.yml @@ -98,7 +98,7 @@ jobs: if: matrix.libgccjit_version.gcc != 'libgccjit12.so' id: tests run: | - ${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --clean --build-sysroot --test-failing-rustc ${{ matrix.libgccjit_version.extra }} | tee output_log + ${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --clean --build-sysroot --test-failing-rustc ${{ matrix.libgccjit_version.extra }} 2>&1 | tee output_log rg --text "test result" output_log >> $GITHUB_STEP_SUMMARY - name: Run failing ui pattern tests for ICE @@ -106,7 +106,7 @@ jobs: if: matrix.libgccjit_version.gcc != 'libgccjit12.so' id: ui-tests run: | - ${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --test-failing-ui-pattern-tests ${{ matrix.libgccjit_version.extra }} | tee output_log_ui + ${{ matrix.libgccjit_version.env_extra }} ./y.sh test --release --test-failing-ui-pattern-tests ${{ matrix.libgccjit_version.extra }} 2>&1 | tee output_log_ui if grep -q "the compiler unexpectedly panicked" output_log_ui; then echo "Error: 'the compiler unexpectedly panicked' found in output logs. CI Error!!" exit 1 |
