forked from electronic-structure/SIRIUS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
124 lines (121 loc) · 4.58 KB
/
Jenkinsfile
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!groovy
pipeline {
agent {
node {
label 'ssl_daintvm1'
}
}
environment {
EB_CUSTOM_REPOSITORY = '/users/simonpi/jenkins/production/easybuild'
}
stages {
stage('Checkout') {
steps {
dir('SIRIUS') {
checkout scm
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
}
}
}
stage('Compile') {
steps {
dir('SIRIUS') {
sh '''
#!/bin/bash -l
export ENVFILE=$(realpath ci/env-gnu-gpu)
rm -f sirius*{err,out}
rm -f build-daint-gpu.out
rm -f build-daint-gpu.err
sbatch --wait ci/build-daint-gpu.sh
echo "---------- build-daint-gpu.out ----------"
cat build-daint-gpu.out
echo "---------- build-daint-gpu.err ----------"
cat build-daint-gpu.err
# check that sirius.scf has been built
type -f build/apps/dft_loop/sirius.scf
'''
}
}
}
stage('Test') {
parallel {
stage('Test MC') {
steps {
dir('SIRIUS') {
sh '''
cd build
export SIRIUS_BINARIES=$(realpath apps/dft_loop)
type -f ${SIRIUS_BINARIES}/sirius.scf
export ENVFILE=$(realpath ../ci/env-gnu-gpu)
sbatch --wait ../ci/run-mc-verification.sh
cat sirius-mc-tests.err
cat sirius-mc-tests.out
'''
}
}
}
stage('Test GPU') {
steps {
dir('SIRIUS') {
sh '''
cd build
export SIRIUS_BINARIES=$(realpath apps/dft_loop)
type -f ${SIRIUS_BINARIES}/sirius.scf
export ENVFILE=$(realpath ../ci/env-gnu-gpu)
sbatch --wait ../ci/run-gpu-verification.sh
cat sirius-gpu-tests.err
cat sirius-gpu-tests.out
'''
}
}
}
stage('Test MC Parallel') {
steps {
dir('SIRIUS') {
sh '''
cd build
export SIRIUS_BINARIES=$(realpath apps/dft_loop)
type -f ${SIRIUS_BINARIES}/sirius.scf
export ENVFILE=$(realpath ../ci/env-gnu-gpu)
sbatch --wait ../ci/run-mcp-verification.sh
cat sirius-mcp-tests.err
cat sirius-mcp-tests.out
cd ../
'''
}
}
}
stage('Test GPU Parallel') {
steps {
dir('SIRIUS') {
sh '''
cd build
export SIRIUS_BINARIES=$(realpath apps/dft_loop)
type -f ${SIRIUS_BINARIES}/sirius.scf
export ENVFILE=$(realpath ../ci/env-gnu-gpu)
sbatch --wait ../ci/run-gpup-verification.sh
cat sirius-gpup-tests.err
cat sirius-gpup-tests.out
cd ../
'''
}
}
}
}
}
}
post {
always {
// dir('SIRIUS') {
// sh '''
// # delete heavy directories
// rm -rf build verification examples
// '''
// }
archiveArtifacts artifacts: '**/sirius*.out', fingerprint: true
archiveArtifacts artifacts: '**/sirius*.err', fingerprint: true
archiveArtifacts artifacts: '**/build*.out', fingerprint: true
archiveArtifacts artifacts: '**/build*.err', fingerprint: true
}
}
}