Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update CI script #56

Merged
merged 5 commits into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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