Skip to content

Commit

Permalink
Update logic to skip more tests for linux to make linux CI finish soo…
Browse files Browse the repository at this point in the history
…ner on pull requests
  • Loading branch information
andreilitvin committed Oct 8, 2024
1 parent 2484370 commit a9bc97b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ jobs:
- name: Clean output
run: rm -rf ./out
- name: Run Tests with sanitizers
# Sanotizer tests are not likely to find extra issues so running the same tests
# as above repeateadly on every pull request seems extra time. Instead keep this run
# for branch merge only
if: github.event.pull_request.number == null
env:
LSAN_OPTIONS: detect_leaks=1
run: |
Expand Down

0 comments on commit a9bc97b

Please sign in to comment.