Scheduled CI SciFortran workflow for MacOS #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scheduled CI SciFortran workflow for MacOS | |
on: | |
schedule: | |
# min - hour - day of month - month - day of week | |
- cron: '0 3 * * *' #Everyday at 3:00 A.M. | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
test-QcmP: | |
runs-on: macos-11 | |
strategy: | |
fail-fast: false | |
steps: | |
#********* SETUP PART ********** | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@main | |
# QcmPlab setup | |
- uses: QcmPlab/TestSetup@master | |
with: | |
pack-type: open | |
#********* BUILD PART ********** | |
# Build SciFortran | |
- name: Cloning SciFortran | |
run: git clone https://github.com/QcmPlab/SciFortran.git scifor | |
- name: Install SciFortran | |
run: bin/ci_setup_scifor.sh | |
#******** TESTING PART ******** | |
# Testing | |
- name: Building tests | |
run: | | |
source ~/.scifor_config_user | |
export PKG_CONFIG_PATH=~/.pkgconfig.d | |
export GLOB_INC=$( pkg-config --cflags scifor) | |
export GLOB_LIB=$( pkg-config --libs scifor | sed "s/;/ /g" | sed 's/\\/ /g' ) | |
cd test | |
make all | |
- name: Testing... | |
run: | | |
cd test | |
make test |