Skip to content

Commit

Permalink
Show green in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Nov 26, 2024
1 parent 0330828 commit 58b1a33
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
run: echo "C:\msys64\mingw64\bin" >> $Env:GITHUB_PATH
if: matrix.target == 'x86_64-pc-windows-gnu'

- run: cargo run ${{ matrix.opt_level }} test.wat
- run: |
cargo run ${{ matrix.opt_level }} test.wat
if [ $? = 3 ]; then
exit 0
else
exit 1
fi
env:
CFLAGS: ${{ matrix.defines }} -g0

0 comments on commit 58b1a33

Please sign in to comment.