Use canvas-docker pool of agents

Closes CORE-3304

Test plan:
  Jenkins passes
  Verify builds run on canvas_docker nodes

Change-Id: I789531b8962d7ca53ff938951366a173ed69f2ca
Reviewed-on: https://gerrit.instructure.com/208506
Tested-by: Jenkins
Reviewed-by: James Butters <jbutters@instructure.com>
QA-Review: Robert Lamb <rlamb@instructure.com>
Product-Review: Robert Lamb <rlamb@instructure.com>
This commit is contained in:
Robert Lamb 2019-09-06 12:03:00 -06:00
parent c05ba7c0c2
commit 01d4d28992
8 changed files with 8 additions and 8 deletions

2
Jenkinsfile vendored
View File

@ -46,7 +46,7 @@ def build_parameters = [
] ]
pipeline { pipeline {
agent { label 'docker' } agent { label 'canvas-docker' }
options { options {
ansiColor('xterm') ansiColor('xterm')

View File

@ -33,7 +33,7 @@ pipeline {
// Todo: This will run all contract tests consecutively, still need to get parallel depending on runtime // Todo: This will run all contract tests consecutively, still need to get parallel depending on runtime
stages { stages {
stage ('Contract Tests') { stage ('Contract Tests') {
agent { label 'docker' } agent { label 'canvas-docker' }
steps { steps {
timeout(time: 60) { timeout(time: 60) {
sh 'printenv | sort' sh 'printenv | sort'

View File

@ -31,7 +31,7 @@ def cleanupDocker () {
pipeline { pipeline {
agent { label 'docker' } agent { label 'canvas-docker' }
options { options {
ansiColor('xterm') ansiColor('xterm')
} }

View File

@ -33,7 +33,7 @@ pipeline {
// Todo: This will run all rspec tests consecutively, still need to get parallel depending on runtime // Todo: This will run all rspec tests consecutively, still need to get parallel depending on runtime
stages { stages {
stage ('Rspec Tests') { stage ('Rspec Tests') {
agent { label 'docker' } agent { label 'canvas-docker' }
steps { steps {
timeout(time: 60) { timeout(time: 60) {
sh 'printenv | sort' sh 'printenv | sort'

View File

@ -35,7 +35,7 @@ pipeline {
stage ('Run Tests Parallel') { stage ('Run Tests Parallel') {
parallel { parallel {
stage('Selenium Tests') { stage('Selenium Tests') {
agent { label 'docker' } agent { label 'canvas-docker' }
steps { steps {
timeout(time: 60) { timeout(time: 60) {
sh 'printenv | sort' sh 'printenv | sort'

View File

@ -33,7 +33,7 @@ pipeline {
// Todo: This will run all performance tests consecutively, still need to get parallel depending on runtime // Todo: This will run all performance tests consecutively, still need to get parallel depending on runtime
stages { stages {
stage ('Selenium Performance Tests') { stage ('Selenium Performance Tests') {
agent { label 'docker' } agent { label 'canvas-docker' }
steps { steps {
timeout(time: 60) { timeout(time: 60) {
sh 'printenv | sort' sh 'printenv | sort'

View File

@ -19,7 +19,7 @@
*/ */
pipeline { pipeline {
agent { label 'docker' } agent { label 'canvas-docker' }
options { options {
ansiColor('xterm') ansiColor('xterm')
} }

View File

@ -33,7 +33,7 @@ pipeline {
// Todo: This will run all xbrowser tests consecutively, still need to get parallel depending on runtime // Todo: This will run all xbrowser tests consecutively, still need to get parallel depending on runtime
stages { stages {
stage ('Xbrowser Tests') { stage ('Xbrowser Tests') {
agent { label 'docker' } agent { label 'canvas-docker' }
steps { steps {
timeout(time: 60) { timeout(time: 60) {
sh 'printenv | sort' sh 'printenv | sort'