forked from runtimeverification/llvm-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
77 lines (76 loc) · 2.32 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
pipeline {
agent none
options {
ansiColor('xterm')
}
stages {
stage("Init title") {
when { changeRequest() }
steps { script { currentBuild.displayName = "PR ${env.CHANGE_ID}: ${env.CHANGE_TITLE}" } }
}
stage('Build and Test on Arch Linux') {
options { timeout(time: 25, unit: 'MINUTES') }
agent {
dockerfile {
filename 'Dockerfile.arch'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --pull'
}
}
steps {
sh '''
#./ciscript Debug
#./ciscript Release
#./ciscript RelWithDebInfo
#./ciscript FastBuild
#./ciscript GcStats
'''
}
}
stage('Build and Test on Ubuntu') {
options { timeout(time: 25, unit: 'MINUTES') }
agent {
dockerfile {
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g)'
reuseNode true
}
}
steps {
sh '''
./ciscript Debug
./ciscript Release
./ciscript RelWithDebInfo
./ciscript FastBuild
./ciscript GcStats
'''
}
}
stage('Update K Submodule') {
when { branch 'master' }
agent {
dockerfile {
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g)'
reuseNode true
}
}
environment { LONG_REV = """${sh(returnStdout: true, script: 'git rev-parse HEAD').trim()}""" }
steps {
build job: 'rv-devops/master', propagate: false, wait: false \
, parameters: [ booleanParam ( name: 'UPDATE_DEPS' , value: true ) \
, string ( name: 'UPDATE_DEPS_REPO' , value: 'kframework/llvm-backend' ) \
, string ( name: 'UPDATE_DEPS_VERSION' , value: "${env.LONG_REV}" ) \
]
}
}
}
post {
unsuccessful {
script {
if (env.BRANCH_NAME == 'master') {
slackSend color: '#cb2431' \
, channel: '#llvm-backend' \
, message: "Master build failure: ${env.BUILD_URL}"
}
}
}
}
}