Skip to content

Commit

Permalink
Update wf to not exist so fast
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Oct 6, 2023
1 parent e258e7e commit e903448
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci-sanitizers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
exclude:
# FIXME: cfi is a mix of lto, bitcode, 1-cgu, and it doesn't seem to
# even compile
- sanitizer: cfi
# - sanitizer: cfi
# FIXME: we get some failures pretty early here
- sanitizer: memory
- sanitizer: leak
# - sanitizer: memory
# - sanitizer: leak
name: Test ${{ matrix.crate }} with ${{ matrix.sanitizer }} sanitizer
runs-on: ubuntu-latest
# continue running if other tests fail. Disable this once we get out of the
Expand All @@ -39,7 +39,12 @@ jobs:
- name: Setup environment
run: bash ./ci-sanitizers-setup.sh
- name: Run ${{ matrix.sanitizer }}
run: ./ci-sanitizers-test.sh ${{ matrix.crate }} ${{ matrix.sanitizer }}
# Mark everything as pass just so GH doesn't cancel on us as soon as there is a failure
run: ./ci-sanitizers-test.sh ${{ matrix.crate }} ${{ matrix.sanitizer }} && echo good! || echo fail!
mark_failure:
runs-on: ubuntu-latest
steps:
- run: sleep 2000 && echo that's enough time!; exit 1

# Send a Zulip notification when a cron job fails
# cron-fail-notify:
Expand Down

0 comments on commit e903448

Please sign in to comment.