Skip to content

Commit

Permalink
update CI script (#56)
Browse files Browse the repository at this point in the history
* update CI script (macOS-latest, macOS-13)

* update

* OMP_NUM_THREADS=1

* set OMP=1 only for macos test

* add scheduled CI
  • Loading branch information
yomichi authored May 10, 2024
1 parent 42d10e3 commit a8b5686
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
name: CI

on: [push]
on:
push:
schedule:
- cron: '0 0 1,15 * *' # JST 9:00 on 1st and 15th every month

jobs:
ctest:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: ["ubuntu-22.04", "macos-11", "ubuntu-20.04"]
os: ["ubuntu-22.04", "ubuntu-20.04", "macos-latest"]
ompsize: [1, 4]
exclude:
- os: "macos-latest"
ompsize: 4 # OMP on macOS is too slow
fail-fast: false
env:
OMP_NUM_THREADS: ${{ matrix.ompsize }}

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

- name: apt
if: ${{ runner.os == 'Linux' }}
Expand All @@ -25,9 +34,13 @@ 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 @@ -40,10 +53,12 @@ jobs:
if [ ${{ runner.os }} = "macOS" ] ; then
# CONFIG=apple requires gfortran but macOS runner has not, but gfortran-11, 12, ...
ln -s `which gfortran-11` gfortran
env PATH=`pwd`:$PATH HOMEBREW_PREFIX=/usr/local cmake -DCONFIG=apple -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE
env PATH=`pwd`:$PATH cmake -DCONFIG=apple -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE
else
cmake -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE
fi
env:
HOMEBREW_PREFIX: /opt/homebrew

- name: build
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit a8b5686

Please sign in to comment.