Skip to content

Commit

Permalink
Merge pull request #568 from MatthewFluet/ci-updates
Browse files Browse the repository at this point in the history
CI updates
  • Loading branch information
MatthewFluet authored May 22, 2024
2 parents 359be75 + 062d698 commit db3ea0b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, macos-13, macos-14, windows-latest]
runner: [ubuntu-24.04, macos-13, macos-14, windows-2022]
cc: ["gcc", "clang"]
codegen: ["amd64", "c", "llvm"]
exclude:
Expand All @@ -23,9 +23,9 @@ jobs:
cc: "gcc"
- runner: macos-14
codegen: "amd64"
- runner: windows-latest
- runner: windows-2022
cc: "clang"
- runner: windows-latest
- runner: windows-2022
codegen: "llvm"
- cc: "gcc"
codegen: "llvm"
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
if: ${{ matrix.runner == 'macos-13' }}
run: |
# brew update
brew install gmp
brew install -q gmp
echo "WITH_GMP_DIR=/usr/local" >> $GITHUB_ENV
if [[ "${{ matrix.codegen }}" == "llvm" ]]; then brew install llvm; echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH; fi
mkdir boot && cd boot
Expand All @@ -77,7 +77,7 @@ jobs:
if: ${{ matrix.runner == 'macos-14' }}
run: |
# brew update
brew install gmp
brew install -q gmp
echo "WITH_GMP_DIR=/opt/homebrew" >> $GITHUB_ENV
if [[ "${{ matrix.codegen }}" == "llvm" ]]; then brew install llvm; echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH; fi
mkdir boot && cd boot
Expand Down

0 comments on commit db3ea0b

Please sign in to comment.