Skip to content

Commit

Permalink
chore: run tests with full-ci (#3009)
Browse files Browse the repository at this point in the history
it looks like inter-job outputs are just strings, not boolean values?
  • Loading branch information
nomeata authored Dec 1, 2023
1 parent 465f0fe commit 92f1755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,10 @@ jobs:
ulimit -c unlimited # coredumps
# exclude nonreproducible test
ctest -j4 --output-on-failure ${{ matrix.CTEST_OPTIONS }} < /dev/null
if: (matrix.wasm || !matrix.cross) && !needs.configure.outputs.quick
if: (matrix.wasm || !matrix.cross) && needs.configure.outputs.quick == 'false'
- name: Check Test Binary
run: ${{ matrix.binary-check }} tests/compiler/534.lean.out
if: ${{ !matrix.cross && !needs.configure.outputs.quick }}
if: ${{ !matrix.cross && needs.configure.outputs.quick == 'false' }}
- name: Build Stage 2
run: |
cd build
Expand All @@ -400,7 +400,7 @@ jobs:
cd build
ulimit -c unlimited # coredumps
make update-stage0 && make -j4
if: matrix.name == 'Linux' && !needs.configure.outputs.quick
if: matrix.name == 'Linux' && needs.configure.outputs.quick == 'false'
- name: CCache stats
run: ccache -s
- name: Show stacktrace for coredumps
Expand Down

0 comments on commit 92f1755

Please sign in to comment.