2019-08-15 02:43:09 +08:00
|
|
|
#!/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/>.
|
|
|
|
*/
|
|
|
|
|
2019-09-07 05:01:43 +08:00
|
|
|
def isMerge () {
|
|
|
|
return env.GERRIT_EVENT_TYPE == 'change-merged'
|
|
|
|
}
|
|
|
|
|
2019-08-15 02:43:09 +08:00
|
|
|
pipeline {
|
2019-09-07 02:03:00 +08:00
|
|
|
agent { label 'canvas-docker' }
|
2019-08-15 02:43:09 +08:00
|
|
|
options {
|
|
|
|
ansiColor('xterm')
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
2019-12-03 03:14:11 +08:00
|
|
|
COMPOSE_FILE = 'docker-compose.new-jenkins-web.yml:docker-compose.new-jenkins-karma.yml'
|
|
|
|
|
2019-08-15 02:43:09 +08:00
|
|
|
// 'refs/changes/63/181863/8' -> '63.181863.8'
|
|
|
|
NAME = "${env.GERRIT_REFSPEC}".minus('refs/changes/').replaceAll('/','.')
|
2019-08-27 01:48:19 +08:00
|
|
|
PATCHSET_TAG = "$DOCKER_REGISTRY_FQDN/jenkins/canvas-lms:$NAME"
|
2019-08-15 02:43:09 +08:00
|
|
|
}
|
|
|
|
stages {
|
2019-11-28 05:22:59 +08:00
|
|
|
// remove this after it runs for a little bit.
|
|
|
|
stage('temp-cleanup') {
|
|
|
|
steps {
|
|
|
|
sh 'build/new-jenkins/docker-cleanup.sh'
|
|
|
|
}
|
|
|
|
}
|
2019-08-30 06:03:52 +08:00
|
|
|
stage('Tests Setup') {
|
|
|
|
steps {
|
2019-12-03 03:14:11 +08:00
|
|
|
timeout(time: 60) {
|
|
|
|
echo 'Running containers'
|
|
|
|
sh 'docker ps'
|
|
|
|
sh 'printenv | sort'
|
|
|
|
sh 'build/new-jenkins/docker-compose-pull.sh'
|
|
|
|
sh 'build/new-jenkins/docker-compose-build-up.sh'
|
|
|
|
}
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
2019-09-07 05:01:43 +08:00
|
|
|
}
|
2019-08-30 06:03:52 +08:00
|
|
|
stage('Tests') {
|
|
|
|
environment {
|
2019-09-07 05:01:43 +08:00
|
|
|
COVERAGE = isMerge()
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
parallel {
|
|
|
|
stage('Jest') {
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-jest.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Packages') {
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-packages.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Karma - Spec Group - coffee') {
|
|
|
|
environment {
|
|
|
|
JSPEC_GROUP = 'coffee'
|
|
|
|
}
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-karma.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Karma - Spec Group - jsa - A-F') {
|
|
|
|
environment {
|
|
|
|
JSPEC_GROUP = 'jsa'
|
|
|
|
}
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-karma.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Karma - Spec Group - jsg - G') {
|
|
|
|
environment {
|
|
|
|
JSPEC_GROUP = 'jsg'
|
|
|
|
}
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-karma.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Karma - Spec Group - jsh - H-Z') {
|
|
|
|
environment {
|
|
|
|
JSPEC_GROUP = 'jsh'
|
|
|
|
}
|
|
|
|
steps {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/js/tests-karma.sh'
|
2019-08-30 06:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 02:43:09 +08:00
|
|
|
}
|
2019-08-22 03:12:19 +08:00
|
|
|
post {
|
|
|
|
cleanup {
|
2019-11-28 05:22:59 +08:00
|
|
|
sh 'build/new-jenkins/docker-cleanup.sh'
|
2019-08-22 03:12:19 +08:00
|
|
|
}
|
|
|
|
}
|
2019-08-15 02:43:09 +08:00
|
|
|
}
|