Skip to content

Commit

Permalink
More hackery, pt. 5
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Aug 18, 2024
1 parent aebc782 commit 24bb514
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
ghc-version: ["9.4.8"]
cabal: [ '3.10.3.0' ]
steps:
- name: Install gcc
- name: Install GCC 14
shell: bash
run: |
brew install gcc
GCC="$(brew --prefix)/bin/gcc"
GXX="$(brew --prefix)/bin/g++"
brew install gcc@14
GCC="$(brew --prefix gcc@14)/bin/gcc-14"
GXX="$(brew --prefix gcc@14)/bin/g++-14"
echo "GCC=$GCC" >> $GITHUB_ENV
echo "GXX=$GXX" >> $GITHUB_ENV
Expand Down

0 comments on commit 24bb514

Please sign in to comment.