-
Notifications
You must be signed in to change notification settings - Fork 63
/
Jenkinsfile
97 lines (95 loc) · 3.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
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
pipeline {
agent {
dockerfile {
filename 'Dockerfile'
dir 'docker'
args '--mount src="$HOME/.mx",target="/.mx",type=bind'
}
}
options {
timestamps()
timeout(time: 1, unit: 'HOURS')
}
environment {
MAXINE_HOME="$WORKSPACE/maxine"
MX_HOME="$WORKSPACE/mx"
MX="$MX_HOME/mx --suite=maxine"
MX_GIT_CACHE="refcache"
}
stages {
stage('clone') {
steps {
parallel 'maxine': {
dir(env.MAXINE_HOME) {
checkout scm
}
}, 'mx': {
dir(env.MX_HOME) {
checkout([$class: 'GitSCM', branches: [[name: '5.194.3']], extensions: [[$class: 'CloneOption', shallow: true]], userRemoteConfigs: [[url: 'https://github.com/graalvm/mx.git']]])
}
}
}
}
stage('fetch dependencies') {
steps {
// Trigger fetch of dependencies
dir(env.MAXINE_HOME) {
sh '$MX help'
}
}
}
stage('checkstyle-n-build') {
steps {
parallel 'checkstyle': {
dir(env.MAXINE_HOME) {
sh '$MX checkstyle'
}
}, 'build': {
dir(env.MAXINE_HOME) {
sh '$MX build'
}
}
}
}
stage('image-n-test-init') {
steps {
parallel 'image': {
dir(env.MAXINE_HOME) {
sh '$MX image -build=DEBUG -platform linux-aarch64 -isa Aarch64'
sh '$MX image -build=DEBUG -platform linux-arm -isa ARMV7'
sh '$MX image -build=DEBUG -platform linux-riscv64 -isa RISCV64'
sh '$MX -J-ea image'
}
}, 'test-init': {
dir(env.MAXINE_HOME) {
sh '$MX jttgen'
sh '$MX canonicalizeprojects'
}
}
}
}
stage('gate-n-crossisa') {
steps {
parallel 'gate': {
dir(env.MAXINE_HOME) {
sh '$MX gate -nocheck'
}
}, 'crossisa': {
dir(env.MAXINE_HOME) {
sh '$MX --J @"-ea" testme -s=t -junit-test-timeout=1800 -tests=junit:aarch64.asm+Aarch64T1XTest+Aarch64T1XpTest+Aarch64JTT'
sh '$MX --J @"-ea" testme -s=t -junit-test-timeout=1800 -tests=junit:armv7.asm+ARMV7T1XTest+ARMV7JTT'
sh '$MX --J @"-ea" testme -s=t -junit-test-timeout=1800 -tests=junit:riscv64.asm+max.asm.target.riscv+riscv64.t1x+riscv64.jtt'
}
}
}
}
}
post {
success {
slackSend color: '#00CC00', message: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})"
}
failure {
slackSend color: '#CC0000', message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})"
}
}
}