Skip to content

Commit

Permalink
Try to force GCC-12 for MacOS (try 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmloose committed Jul 25, 2024
1 parent 0a3fb74 commit 8376136
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,26 @@ on: [push] #, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
include:
- runs-on: macos-12
compiler: gcc
gcc: 12
strategy:
fail-fast: true
matrix:
runs-on: ${{ matrix.os }}
# os: [ubuntu-latest] #, macos-latest]
os: [macos-12]
include:
- runs-on: macos-12
compiler: gcc
gcc: 12

steps:
- uses: actions/checkout@v4

- name: Select GCC version
if: matrix.gcc
run: |
echo "CC=gcc-${{ matrix.gcc }}" >> $GITHUB_ENV
echo "CXX=g++-${{ matrix.gcc }}" >> $GITHUB_ENV
- name: Setup GNU Fortran
uses: fortran-lang/setup-fortran@v1
id: macos-setup-fortran
Expand Down

0 comments on commit 8376136

Please sign in to comment.