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:
parent
c05ba7c0c2
commit
01d4d28992
|
@ -46,7 +46,7 @@ def build_parameters = [
|
||||||
]
|
]
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'docker' }
|
agent { label 'canvas-docker' }
|
||||||
|
|
||||||
options {
|
options {
|
||||||
ansiColor('xterm')
|
ansiColor('xterm')
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -31,7 +31,7 @@ def cleanupDocker () {
|
||||||
|
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'docker' }
|
agent { label 'canvas-docker' }
|
||||||
options {
|
options {
|
||||||
ansiColor('xterm')
|
ansiColor('xterm')
|
||||||
}
|
}
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'docker' }
|
agent { label 'canvas-docker' }
|
||||||
options {
|
options {
|
||||||
ansiColor('xterm')
|
ansiColor('xterm')
|
||||||
}
|
}
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue