Rename Frontend build to JS and oncomment

fixes: CCI-120

test plan: Jenkins build passes and runs the JS test suite

Change-Id: If924af6c0eceece51f826c4cd337735d24081b1e
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/218463
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Tested-by: Jenkins
QA-Review: Robert Lamb <rlamb@instructure.com>
Product-Review: Robert Lamb <rlamb@instructure.com>
Reviewed-by: S. Jacob Powell <spowell@instructure.com>
This commit is contained in:
Robert Lamb 2019-11-23 13:34:22 -07:00
parent 32c7fc9a99
commit f98fe4fae7
2 changed files with 13 additions and 12 deletions

25
Jenkinsfile vendored
View File

@ -257,6 +257,19 @@ pipeline {
}
}
}
stage('JS') {
steps {
skipIfPreviouslySuccessful("js") {
// propagate set to false until we can get tests passing
build(
job: 'test-suites/JS',
propagate: false,
parameters: build_parameters
)
}
}
}
/*
* Don't run these on all patch sets until we have them ready to report results.
* Uncomment stage to run when developing.
@ -312,18 +325,6 @@ pipeline {
* }
* }
*
* stage('Frontend') {
* steps {
* skipIfPreviouslySuccessful("frontend") {
* // propagate set to false until we can get tests passing
* build(
* job: 'test-suites/frontend',
* propagate: false,
* parameters: build_parameters
* )
* }
* }
* }
*
* stage('Xbrowser') {
* steps {