Newer
Older
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
pipeline {
agent any
stages {
stage('simox') {
steps {
script {
def BUILD_STATUS = sh(script: "rm -rf ~/.cmake && mkdir -p build && cd build && cmake .. && make", returnStatus: true)
if (BUILD_STATUS == 0) {
updateGitlabCommitStatus name: 'Build simox', state: 'success'
} else {
updateGitlabCommitStatus name: 'Build simox', state: 'failed'
error("Build simox failed!")
}
def TEST_STATUS = sh(script: "cd build && ctest --output-on-failure", returnStatus: true)
if (TEST_STATUS == 0) {
updateGitlabCommitStatus name: 'Test simox', state: 'success'
} else {
updateGitlabCommitStatus name: 'Test simox', state: 'failed'
}
}
}
}
stage('MMMCore') {
steps {
script {
def STATUS = build job: 'gitlab/MMMCore', wait: true, propagate: false
if (STATUS.buildVariables.BUILD_STATUS == "0") {
updateGitlabCommitStatus name: 'Build MMMCore', state: 'success'
if (STATUS.buildVariables.TEST_STATUS == "0") {
updateGitlabCommitStatus name: 'Test MMMCore', state: 'success'
} else {
updateGitlabCommitStatus name: 'Test MMMCore', state: 'failed'
}
} else {
updateGitlabCommitStatus name: 'Build MMMCore', state: 'failed'
}
}
}
}
stage('ArmarXCore') {
steps {
script {
def STATUS = build job: 'gitlab/ArmarXCore', wait: true, propagate: false
echo STATUS.buildVariables.BUILD_STATUS
if (STATUS.buildVariables.BUILD_STATUS == "0") {
updateGitlabCommitStatus name: 'Build ArmarXCore', state: 'success'
if (STATUS.buildVariables.TEST_STATUS == "0") {
updateGitlabCommitStatus name: 'Test ArmarXCore', state: 'success'
} else {
updateGitlabCommitStatus name: 'Test ArmarXCore', state: 'failed'
}
} else {
updateGitlabCommitStatus name: 'Build ArmarXCore', state: 'failed'
}
}
}
}
stage('MMMTools') {
steps {
script {
def STATUS = build job: 'gitlab/MMMTools', wait: true, propagate: false
if (STATUS.buildVariables.BUILD_STATUS == "0") {
updateGitlabCommitStatus name: 'Build MMMTools', state: 'success'
if (STATUS.buildVariables.TEST_STATUS == "0") {
updateGitlabCommitStatus name: 'Test MMMTools', state: 'success'
} else {
updateGitlabCommitStatus name: 'Test MMMTools', state: 'failed'
}
} else {
updateGitlabCommitStatus name: 'Build MMMTools', state: 'failed'
}
}
}
}
}
}