-
-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathJenkinsfile
119 lines (111 loc) · 4.63 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
final String cronExpr = env.BRANCH_IS_PRIMARY ? '@daily' : ''
properties([
buildDiscarder(logRotator(numToKeepStr: '10')),
disableConcurrentBuilds(abortPrevious: true),
pipelineTriggers([cron(cronExpr)]),
])
def agentSelector(String imageType) {
// Linux agent
if (imageType == 'linux') {
// This function is defined in the jenkins-infra/pipeline-library
if (infra.isTrusted()) {
return 'linux'
} else {
// Need Docker and a LOT of memory for faster builds (due to multi archs) or fallback to linux (trusted.ci)
return 'docker-highmem'
}
}
// Windows Server Core 2022 agent
if (imageType.contains('2022')) {
return 'windows-2022'
}
// Windows Server Core 2019 agent (for nanoserver 1809 & ltsc2019 and for windowservercore ltsc2019)
return 'windows-2019'
}
// Ref. https://github.com/jenkins-infra/pipeline-library/pull/917
def spotAgentSelector(String agentLabel, int counter) {
// This function is defined in the jenkins-infra/pipeline-library
if (infra.isTrusted()) {
// Return early if on trusted (no spot agent)
return agentLabel
}
if (counter > 1) {
return agentLabel + ' && nonspot'
}
return agentLabel + ' && spot'
}
// Specify parallel stages
def parallelStages = [failFast: false]
[
'linux',
'nanoserver-1809',
'nanoserver-ltsc2019',
'nanoserver-ltsc2022',
'windowsservercore-1809',
'windowsservercore-ltsc2019',
'windowsservercore-ltsc2022'
].each { imageType ->
parallelStages[imageType] = {
withEnv([
"IMAGE_TYPE=${imageType}",
"REGISTRY_ORG=${infra.isTrusted() ? 'jenkins' : 'jenkins4eval'}",
]) {
int retryCounter = 0
retry(count: 2, conditions: [agent(), nonresumable()]) {
// Use local variable to manage concurrency and increment BEFORE spinning up any agent
final String resolvedAgentLabel = spotAgentSelector(agentSelector(imageType), retryCounter)
retryCounter++
node(resolvedAgentLabel) {
timeout(time: 60, unit: 'MINUTES') {
checkout scm
if (imageType == "linux") {
stage('Prepare Docker') {
sh 'make docker-init'
}
}
// This function is defined in the jenkins-infra/pipeline-library
if (infra.isTrusted()) {
// trusted.ci.jenkins.io builds (e.g. publication to DockerHub)
stage('Deploy to DockerHub') {
withEnv([
"ON_TAG=true",
"VERSION=${env.TAG_NAME}",
]) {
// This function is defined in the jenkins-infra/pipeline-library
infra.withDockerCredentials {
if (isUnix()) {
sh 'make publish'
} else {
powershell '& ./build.ps1 publish'
}
}
}
}
} else {
stage('Build and Test') {
// ci.jenkins.io builds (e.g. no publication)
if (isUnix()) {
sh 'make build'
sh 'make test'
} else {
powershell '& ./build.ps1 test'
archiveArtifacts artifacts: 'build-windows_*.yaml', allowEmptyArchive: true
}
junit(allowEmptyResults: true, keepLongStdio: true, testResults: 'target/**/junit-results.xml')
}
// If the tests are passing for Linux AMD64, then we can build all the CPU architectures
if (isUnix()) {
stage('Multi-Arch Build') {
sh 'make every-build'
}
}
}
}
}
}
}
}
}
// Execute parallel stages
parallel parallelStages
// // vim: ft=groovy