Spec: Increase plugin timeout for perf build
Fixes: CCI-167 Change-Id: Ifb7c7451eee87b7cfcde13a1c49bf9b9ee4b057d Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/221649 Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com> Reviewed-by: James Butters <jbutters@instructure.com> QA-Review: James Butters <jbutters@instructure.com> Product-Review: James Butters <jbutters@instructure.com>
This commit is contained in:
parent
20a0aedd0f
commit
0b311d97ff
|
@ -53,7 +53,7 @@ pipeline {
|
||||||
// Copied wholesale out of Jenkinsfile, this needs be abstracted if possible
|
// Copied wholesale out of Jenkinsfile, this needs be abstracted if possible
|
||||||
stage('Checkout Plugins') {
|
stage('Checkout Plugins') {
|
||||||
steps {
|
steps {
|
||||||
timeout(time: 3) {
|
timeout(time: 10) {
|
||||||
script {
|
script {
|
||||||
def credentials = load 'build/new-jenkins/groovy/credentials.groovy'
|
def credentials = load 'build/new-jenkins/groovy/credentials.groovy'
|
||||||
credentials.fetchFromGerrit('gerrit_builder', '.', '', 'canvas-lms/config')
|
credentials.fetchFromGerrit('gerrit_builder', '.', '', 'canvas-lms/config')
|
||||||
|
@ -122,6 +122,7 @@ pipeline {
|
||||||
unsuccessful {
|
unsuccessful {
|
||||||
// copy spec failures to local
|
// copy spec failures to local
|
||||||
sh 'mkdir -p tmp'
|
sh 'mkdir -p tmp'
|
||||||
|
// [JIRA CCI-168]: need to handle web container never being spun up
|
||||||
sh 'docker cp $(docker-compose ps -q web):/usr/src/app/log/spec_failures/ ./tmp'
|
sh 'docker cp $(docker-compose ps -q web):/usr/src/app/log/spec_failures/ ./tmp'
|
||||||
script {
|
script {
|
||||||
def htmlFiles
|
def htmlFiles
|
||||||
|
|
Loading…
Reference in New Issue