Skip to content

Commit

Permalink
update GHA hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed May 10, 2024
1 parent 0d1def2 commit 9b73ee6
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:

strategy:
matrix:
os: ["ubuntu-22.04", "macos-11", "ubuntu-20.04"]
os: ["ubuntu-22.04", "ubuntu-20.04", "macos-latest", "macos-13"]
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: apt
if: ${{ runner.os == 'Linux' }}
Expand All @@ -25,9 +25,14 @@ jobs:
run: |
brew install openmpi scalapack libomp
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: pip
run: |
python -m pip install numpy
python3 -m pip install numpy
- name: make workspace
Expand All @@ -39,7 +44,7 @@ jobs:
run: |
if [ ${{ runner.os }} = "macOS" ] ; then
# CONFIG=apple requires gfortran but macOS runner has not, but gfortran-11, 12, ...
ln -s `which gfortran-11` gfortran
ln -s `which gfortran-12` gfortran
env PATH=`pwd`:$PATH HOMEBREW_PREFIX=/usr/local cmake -DCONFIG=apple -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE
else
cmake -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE
Expand Down

0 comments on commit 9b73ee6

Please sign in to comment.