forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.js
110 lines (91 loc) · 3.77 KB
/
Jenkinsfile.js
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
#!/usr/bin/env groovy
/*
* Copyright (C) 2019 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
library "canvas-builds-library@${env.CANVAS_BUILDS_REFSPEC}"
loadLocalLibrary('local-lib', 'build/new-jenkins/library')
pipeline {
agent none
options {
ansiColor('xterm')
timeout(time: 20)
timestamps()
}
environment {
BUILD_REGISTRY_FQDN = configuration.buildRegistryFQDN()
COMPOSE_DOCKER_CLI_BUILD = 1
COMPOSE_FILE = 'docker-compose.new-jenkins-js.yml'
DOCKER_BUILDKIT = 1
FORCE_FAILURE = commitMessageFlag('force-failure-js').asBooleanInteger()
PROGRESS_NO_TRUNC = 1
SELENIUM_NODE_IMAGE = "starlord.inscloudgate.net/jenkins/selenium-node-chrome:120.0"
SELENIUM_HUB_IMAGE = "starlord.inscloudgate.net/jenkins/selenium-hub:4.16"
}
stages {
stage('Environment') {
steps {
script {
def hostSh = { script ->
sh(script)
}
def postRunnerHandler = [
onStageEnded: { stageName, stageConfig, result ->
node('master') {
buildSummaryReport.saveRunManifest()
}
}
]
def stageHooks = [
onNodeAcquired: { ->
libraryScript.load('bash/docker-with-flakey-network-protection.sh', './docker-with-flakey-network-protection.sh')
libraryScript.load('js/docker-provision.sh', './docker-provision.sh')
hostSh('./docker-provision.sh')
},
onStageEnded: { stageName, stageConfig, result ->
buildSummaryReport.setStageTimings(stageName, stageConfig.timingValues())
}
]
extendedStage('Runner').hooks(postRunnerHandler).obeysAllowStages(false).execute {
def runnerStages = [:]
for (int i = 0; i < jsStage.JEST_NODE_COUNT; i++) {
String index = i
extendedStage("Runner - Jest ${i}").hooks(stageHooks).nodeRequirements(label: nodeLabel(), podTemplate: jsStage.jestNodeRequirementsTemplate(index)).obeysAllowStages(false).timeout(10).queue(runnerStages) {
def tests = [:]
callableWithDelegate(jsStage.queueJestDistribution(index))(tests)
parallel(tests)
}
}
for (int i = 0; i < jsStage.KARMA_NODE_COUNT; i++) {
String index = i
extendedStage("Runner - Karma ${i}").hooks(stageHooks).nodeRequirements(label: nodeLabel(), podTemplate: jsStage.karmaNodeRequirementsTemplate(index)).obeysAllowStages(false).timeout(10).queue(runnerStages) {
def tests = [:]
callableWithDelegate(jsStage.queueKarmaDistribution(index))(tests)
parallel(tests)
}
}
extendedStage('Runner - Packages').hooks(stageHooks).nodeRequirements(label: nodeLabel(), podTemplate: jsStage.packagesNodeRequirementsTemplate()).obeysAllowStages(false).timeout(12).queue(runnerStages) {
def tests = [:]
callableWithDelegate(jsStage.queuePackagesDistribution())(tests)
parallel(tests)
}
parallel(runnerStages)
}
}
}
}
}
}