forked from Warwick-Plasma/epoch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
76 lines (71 loc) · 1.38 KB
/
.gitlab-ci.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
74
75
76
variables:
GIT_STRATEGY: clone
before_script:
- git submodule update --recursive --init SDF
test_ubuntu_gfortran:
only:
- branches@EPOCH/epoch
- web
- hook
except:
- main
- wip/*
- tag
script:
- export COMPILER=gfortran
- export MPIPROCS=9
- scripts/run-tests-epoch-all.sh
tags:
- ubuntu
- gfortran
test_ubuntu_intel:
only:
- branches@EPOCH/epoch
- web
- hook
except:
- main
- wip/*
- tag
script:
- export COMPILER=intel
- scripts/run-tests-epoch-all.sh -b
tags:
- ubuntu
- intel
test_ubuntu_pgi:
only:
- branches@EPOCH/epoch
- web
- hook
except:
- main
- wip/*
- tag
script:
- export COMPILER=pgi
- export MODE=debug
- scripts/run-tests-epoch-all.sh -b
tags:
- ubuntu
- pgi
test_osx:
only:
- branches@EPOCH/epoch
- web
- hook
except:
- main
- wip/*
- tag
script:
- export COMPILER=gfortran
- export MODE=debug
- scripts/run-tests-epoch-all.sh -b
- cd epoch1d; make rm; cd ../epoch2d; make rm; cd ../epoch3d; make rm; cd ..
- export DEFINE="-DPER_SPECIES_WEIGHT -DPARTICLE_ID -DPHOTONS"
- export DEFINE="$DEFINE -DTRIDENT_PHOTONS -DPER_PARTICLE_CHARGE_MASS"
- export DEFINE="$DEFINE -DPARSER_CHECKING -DWORK_DONE_INTEGRATED -DHC_PUSH"
- scripts/run-tests-epoch-all.sh -b
tags:
- osx