forked from runtimeverification/haskell-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
103 lines (103 loc) · 2.1 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
pipeline {
agent {
dockerfile {
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g)'
}
}
options {
ansiColor('xterm')
}
stages {
stage('Init title') {
when { changeRequest() }
steps {
script {
currentBuild.displayName = "PR ${env.CHANGE_ID}: ${env.CHANGE_TITLE}"
}
}
}
stage('Check') {
steps {
sh '''
./scripts/check.sh
'''
}
}
stage('Dependencies') {
steps {
sh '''
./scripts/clean.sh
./scripts/deps.sh
'''
}
}
stage('Build') {
failFast true
parallel {
stage('Documentation') {
steps {
sh '''
./scripts/docs.sh
'''
}
}
stage('Executables') {
steps {
sh '''
./scripts/kore-exec.sh
'''
}
}
}
}
stage('Unit Tests') {
steps {
sh '''
./scripts/unit-test.sh
'''
}
post {
always {
junit 'kore/test-results.xml'
}
}
}
stage('K Integration') {
options {
timeout(time: 16, unit: 'MINUTES')
}
steps {
sh '''
./scripts/ktest.sh
'''
}
}
stage('KEVM Integration') {
options {
timeout(time: 24, unit: 'MINUTES')
}
steps {
sh '''
./scripts/kevm-integration.sh
'''
}
}
stage('Update K Submodules') {
when { branch 'master' }
steps {
build job: 'rv-devops/master', parameters: [string(name: 'PR_REVIEWER', value: 'ttuegel'), booleanParam(name: 'UPDATE_DEPS_K_HASKELL', value: true)], propagate: true, wait: true
}
}
}
post {
unsuccessful {
script {
if (env.BRANCH_NAME == 'master') {
slackSend color: '#cb2431' \
, channel: '#haskell-backend' \
, message: "Build failure: ${env.BUILD_URL}"
}
}
}
}
}