Skip to content

Commit

Permalink
remove macos from testing-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonMiraj authored Jun 20, 2024
1 parent 5db995e commit 9aff0c1
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macOS-latest]
os: [ubuntu-22.04]
env:
GCC_V: 12

Expand All @@ -29,14 +29,8 @@ jobs:
sudo apt install -y gfortran-${GCC_V}
sudo update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} 100
- name: Install Dependencies MacOS
if: contains(matrix.os, 'macos')
run: |
brew install gcc@${GCC_V}
sudo ln -s $(which gfortran-${GCC_V}) $(dirname $(which gfortran-${GCC_V}))/gfortran
- name: Build and Test Linux and MacOS
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
- name: Build and Test Linux
if: contains(matrix.os, 'ubuntu')
run: |
which gfortran
gfortran --version
Expand Down

0 comments on commit 9aff0c1

Please sign in to comment.