111 lines
3.8 KiB
JavaScript
111 lines
3.8 KiB
JavaScript
#!/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(10).queue(runnerStages) {
|
|
def tests = [:]
|
|
|
|
callableWithDelegate(jsStage.queuePackagesDistribution())(tests)
|
|
|
|
parallel(tests)
|
|
}
|
|
|
|
parallel(runnerStages)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|