-
Notifications
You must be signed in to change notification settings - Fork 46
73 lines (71 loc) · 2.12 KB
/
mpi.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: MPI Build
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
make-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install deps
run: sudo apt-get -y install gfortran openmpi-bin openmpi-common libopenmpi-dev
- name: Configure mpi
run: ./configure --mpi --enablef --prefix $PWD/install gnu
- name: Build mpi
run: make
- name: Install mpi
run: make install
- name: Set environment variables
run: |
echo "DO_PARALLEL=mpirun -np 2" >> $GITHUB_ENV
echo "QUICK_HOME=$PWD/install" >> $GITHUB_ENV
- name: Test mpi
run: make fulltest
- name: Archive test results
if: always()
uses: actions/upload-artifact@v2
with:
name: mpi-tests
path: /home/runner/work/QUICK/QUICK/install/test/runs/mpi
retention-days: 3
- uses: actions/download-artifact@v2
with:
name: mpi-tests
- name: Display structure of artifacts
run: ls -R
cmake-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install deps
run: |
sudo apt-get update
sudo apt-get -y install gfortran cmake openmpi-bin openmpi-common libopenmpi-dev
- name: Configure MPI
run: |
mkdir build
cd build
cmake .. -DCOMPILER=GNU -DMPI=TRUE -DENABLEF=TRUE -DCMAKE_INSTALL_PREFIX=$(pwd)/../install
- name: Build MPI
run: |
cd build
make -j2 install
- name: Set environment variables
run: |
echo "DO_PARALLEL=mpirun -np 2" >> $GITHUB_ENV
echo "QUICK_HOME=$PWD/install" >> $GITHUB_ENV
- name: Test mpi
run: |
cd install
./runtest --mpi --full
- name: Archive test results
if: always()
uses: actions/upload-artifact@v2
with:
name: mpi-tests
path: /home/runner/work/QUICK/QUICK/install/test/runs/mpi
retention-days: 3