-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
71 lines (52 loc) · 1.29 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
pipeline {
agent any
environment {
VERSION_NUMBER = "${BUILD_NUMBER}"
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10'))
}
stages {
stage('Build') {
stages {
stage('Configure Linux') {
steps {
dir("build_debug") {
echo 'Configuring Debug'
sh 'cmake -D CMAKE_BUILD_TYPE=Debug ../'
}
dir("build_release") {
echo 'Configuring Release'
sh 'cmake CMAKE_BUILD_TYPE=Release ../'
}
}
}
stage('Build Linux') {
steps {
dir("build_debug") {
echo 'Building Debug'
sh 'make'
}
dir("build_release") {
echo 'Building Release'
sh '''
cmake -D CMAKE_BUILD_TYPE=Release ..
make
'''
}
}
}
stage('Linux Test') {
steps {
dir("build_release") {
echo 'Testing Release'
sh 'cd test && ./runALLTests --gtest_filter=UnitTest* --path=./test --gtest_output=xml:reports/'
junit 'test/reports/*.xml'
}
}
}
}
}
}
}