forked from Angelogeb/scala-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
92 lines (78 loc) · 2.8 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
def GCs = ["none","boehm","immix","commix"]
def OSs = ["mac", "linux"]
def tasks = [:]
def setBuildStatus(String message, String state, String ctx, String repoUrl, String commitSha) {
step([
$class: "GitHubCommitStatusSetter",
reposSource: [$class: "ManuallyEnteredRepositorySource", url: repoUrl],
commitShaSource: [$class: "ManuallyEnteredShaSource", sha: commitSha],
contextSource: [$class: "ManuallyEnteredCommitContextSource", context: ctx],
errorHandlers: [[$class: "ChangingBuildStatusErrorHandler", result: "UNSTABLE"]],
statusResultSource: [ $class: "ConditionalStatusResultSource", results: [[$class: "AnyBuildResult", message: message, state: state]] ]
]);
}
def withCleanup(Closure body) {
try {
body()
} finally {
cleanWs()
}
}
def job(String OS, List<String> GCs) {
def repoUrl = ""
def commitSha = ""
def advance = { name, ctx, work ->
stage("[$ctx] $name") {
ansiColor('xterm') {
setBuildStatus("$name...", "PENDING", ctx, repoUrl, commitSha)
try {
work()
setBuildStatus(name, "SUCCESS", ctx, repoUrl, commitSha)
}
catch (exc) {
setBuildStatus(name, "FAILURE", ctx, repoUrl, commitSha)
throw exc
}
}
}
}
return node(OS) {
def ivyHome = pwd tmp: true
withCleanup {
stage("[$OS] Cloning") {
ansiColor('xterm') {
checkout scm
sh "git config --get remote.origin.url > .git/remote-url"
repoUrl = readFile(".git/remote-url").trim()
sh "git rev-parse HEAD > .git/current-commit"
commitSha = readFile(".git/current-commit").trim()
}
}
advance("Formatting", OS) {
sh 'scripts/scalafmt --test'
}
advance("Building", OS) {
retry(2) {
sh "sbt -Dsbt.ivy.home=$ivyHome -J-Xmx3G scalalib/package"
}
}
setBuildStatus("Build succeeded", "SUCCESS", OS, repoUrl, commitSha)
for (int i = 0; i < GCs.size(); i++) {
def GC = GCs[i]
advance("Testing", "$OS/$GC") {
retry(2) {
sh "SCALANATIVE_GC=$GC sbt -Dsbt.ivy.home=$ivyHome -J-Xmx3G test-all"
}
}
setBuildStatus("Tests succeeded", "SUCCESS", "$OS/$GC", repoUrl, commitSha)
}
}
}
}
for(int i = 0; i < OSs.size(); i++) {
def selectedOS = OSs[i]
tasks["${selectedOS}"] = {
job(selectedOS, GCs)
}
}
parallel tasks