Skip to content

Commit

Permalink
Revert "TEMPORARY DEBUG"
Browse files Browse the repository at this point in the history
This reverts commit a4b7cb8.
  • Loading branch information
Akuli committed Jan 8, 2025
1 parent 3c17089 commit f17e2a9
Showing 1 changed file with 35 additions and 2 deletions.
37 changes: 35 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,42 @@ on:
pull_request:

jobs:
test:
runs-on: macos-latest
timeout-minutes: 5
strategy:
matrix:
# Testing all levels because there was a bug that only happened with -O1. (#224)
opt-level: ['-O0', '-O1', '-O2', '-O3']
steps:
- uses: actions/checkout@v3
- run: brew install bash diffutils llvm@14

- run: make
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }}"
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }} --verbose"
- run: make clean

- name: Check that "make clean" deleted all files not committed to Git
shell: bash
run: |
if [ "$(git status --porcelain --ignored)" != "" ]; then
git status --ignored
exit 1
fi
doctest:
runs-on: macos-latest
timeout-minutes: 5
steps:
- run: |
env | grep ARCH
- uses: actions/checkout@v3
- run: brew install bash diffutils llvm@14
- run: ./doctest.sh

compare-compilers:
runs-on: macos-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- run: brew install bash diffutils llvm@14
- run: ./compare_compilers.sh

0 comments on commit f17e2a9

Please sign in to comment.