Skip to content

Commit

Permalink
Drop LLVM 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 8, 2025
1 parent b1fbd65 commit eb6e885
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,9 @@ jobs:
opt-level: ['-O0', '-O1', '-O2', '-O3']
steps:
- uses: actions/checkout@v3
- run: brew install bash diffutils llvm@{13,14}
- run: brew install bash diffutils llvm@14

- name: Compile with LLVM 13
run: LLVM_CONFIG=/usr/local/opt/llvm@13/bin/llvm-config make
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }}"
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }} --verbose"
- run: make clean

- name: Compile with LLVM 14
run: LLVM_CONFIG=/usr/local/opt/llvm@14/bin/llvm-config make
- run: make
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }}"
- run: ./runtests.sh --verbose --jou-flags "${{ matrix.opt-level }} --verbose"
- run: make clean
Expand All @@ -41,19 +34,13 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- run: brew install bash diffutils llvm@{13,14}

- run: LLVM_CONFIG=/usr/local/opt/llvm@13/bin/llvm-config ./doctest.sh
- run: make clean
- run: LLVM_CONFIG=/usr/local/opt/llvm@14/bin/llvm-config ./doctest.sh
- 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@{13,14}

- run: LLVM_CONFIG=/usr/local/opt/llvm@13/bin/llvm-config ./compare_compilers.sh
- run: make clean
- run: LLVM_CONFIG=/usr/local/opt/llvm@14/bin/llvm-config ./compare_compilers.sh
- run: brew install bash diffutils llvm@14
- run: ./compare_compilers.sh

0 comments on commit eb6e885

Please sign in to comment.