forked from SuperElastix/SuperElastix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
78 lines (71 loc) · 2.31 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
def getRepoURL() {
sh "git config --get remote.origin.url > .git/remote-url"
return readFile(".git/remote-url").trim()
}
def getCommitSha() {
sh "git rev-parse HEAD > .git/current-commit"
return readFile(".git/current-commit").trim()
}
def updateGithubCommitStatus(build) {
// workaround https://issues.jenkins-ci.org/browse/JENKINS-38674
repoUrl = getRepoURL()
commitSha = getCommitSha()
step([
$class: 'GitHubCommitStatusSetter',
reposSource: [$class: "ManuallyEnteredRepositorySource", url: repoUrl],
commitShaSource: [$class: "ManuallyEnteredShaSource", sha: commitSha],
errorHandlers: [[$class: 'ShallowAnyErrorHandler']],
statusResultSource: [
$class: 'ConditionalStatusResultSource',
results: [
[$class: 'BetterThanOrEqualBuildResult', result: 'SUCCESS', state: 'SUCCESS', message: build.description],
[$class: 'BetterThanOrEqualBuildResult', result: 'FAILURE', state: 'FAILURE', message: build.description],
[$class: 'AnyBuildResult', state: 'FAILURE', message: 'Loophole']
]
]
])
}
node('lkeb-vm-test') {
stage('Init') {
cmake = tool 'CMake 3.5.1'
sh 'rm -rf build'
sh 'mkdir -p build'
}
timeout(120) {
stage('Checkout') {
sh 'mkdir -p src'
dir('src') {
checkout scm
}
}
stage('SuperBuild') {
dir('build') {
sh "`dirname ${ cmake }`/ctest --script ../src/SuperBuild/CTest.cmake"
}
}
stage('Test') {
dir('build/SuperElastix-build') {
sh "`dirname ${ cmake }`/ctest --script ../../src/CTest.cmake"
}
}
stage('Deploy') {
dir('src') {
sh '''
GIT_BRANCH=$(git name-rev --name-only HEAD)
echo $GIT_BRANCH
if [ "$GIT_BRANCH" = "remotes/origin/develop" ]
then
echo "Deploy this build of develop on shark cluster"
rsync -vr --delete ContinuousRegistration sa_lkeb@shark:/exports/lkeb-hpc/sa_lkeb/SuperElastix-deployed/
scp -p ../build/Applications-build/CommandLineInterface/SuperElastix sa_lkeb@shark:/exports/lkeb-hpc/sa_lkeb/SuperElastix-deployed/
else
echo "This is not the develop branch, thus do not deploy"
fi
'''
}
}
dir('src') {
updateGithubCommitStatus(currentBuild)
}
}
}