-
Notifications
You must be signed in to change notification settings - Fork 49
47 lines (31 loc) · 1.11 KB
/
fesom2_openmp.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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: koldunovn/fesom2_test:refactoring2
# 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