Merge pull request #641 from FESOM/workbench_fixchannel #2159
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: FESOM2 OpenMP test | |
# Controls when the action will run. Triggers the workflow on push or pull request. | |
on: [push, pull_request] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
openmp_test: | |
# Containers must run in Linux based operating systems | |
runs-on: ubuntu-latest | |
# Docker Hub image that `container-job` executes in | |
container: ghcr.io/fesom/fesom2_docker:fesom2_test_refactoring-nightly | |
# Service containers to run with `gfortran_ubuntu` | |
steps: | |
# NK: this changes working directory to fesom2 | |
- uses: actions/checkout@v2 | |
- name: Git safe directory | |
run: | | |
git config --global --add safe.directory ${PWD} | |
- name: Compile model | |
run: | | |
bash -l configure.sh ubuntu -DENABLE_OPENMP=ON | |
- name: Create global test run with 4 OpenMP threads | |
run: | | |
mkrun pi test_pi -m docker | |
cd work_pi | |
sed -i 's/THREADS=1/THREADS=4/g' job_docker_new | |
cd ../ | |
- name: FESOM2 global test run | |
run: | | |
cd work_pi | |
chmod +x job_docker_new | |
./job_docker_new | |