-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
37 lines (36 loc) · 1020 Bytes
/
.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
slurm-job:
tags:
- quartz
- batch
variables:
LLNL_SLURM_SCHEDULER_PARAMETERS: "-N 3 -p pbatch"
script:
- ./buildme_deps
- source /etc/profile.d/z00_lmod.sh
- set -x
- installdir=`pwd`/install
- rm -rf build
- mkdir build
- cd build
- cmake -DWITH_AXL_PREFIX=../install -DCMAKE_INSTALL_PREFIX=$installdir -DVELOC_RESOURCE_MANAGER=SLURM -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr -DCMAKE_VERBOSE_BUILD=1 ..
- make
- make install
- make check
lsf-job:
tags:
- lassen
- batch
variables:
LLNL_LSF_SCHEDULER_PARAMETERS: "-nnodes 3 -q pbatch"
script:
- ./buildme_deps
- source /etc/profile.d/z00_lmod.sh
- set -x
- installdir=`pwd`/install
- rm -rf build
- mkdir build
- cd build
- cmake -DWITH_AXL_PREFIX=../install -DCMAKE_INSTALL_PREFIX=$installdir -DVELOC_RESOURCE_MANAGER=LSF -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr -DCMAKE_VERBOSE_BUILD=1 ..
- make
- make install
- make check