Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WS-2083: delete daily prospectus sandbox job #1419

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 2 additions & 16 deletions devops/jobs/CreateSandboxCI.groovy
Expand Up @@ -9,7 +9,7 @@

* FOLDER_NAME: "Sandboxes"
* ACCESS_CONTROL: List of org or org*team from GitHub who get access to the jobs
* {DAILY,HOURLY,MASTERSWEEKLY,PROSPECTUSDAILY}_SCHEDULE: When to run jobs, cron-formatted.
* {DAILY,HOURLY,MASTERSWEEKLY}_SCHEDULE: When to run jobs, cron-formatted.
* NOTIFY_ON_FAILURE: email address for failures
*/
package devops.jobs
Expand All @@ -21,7 +21,7 @@ import static org.edx.jenkins.dsl.DevopsConstants.common_read_permissions
class CreateSandboxCI {
public static def jobs = { dslFactory, extraVars ->

["Hourly", "Daily", "MastersWeekly", "ProspectusDaily"].each { type ->
["Hourly", "Daily", "MastersWeekly"].each { type ->
dslFactory.job(extraVars.get("FOLDER_NAME","Sandboxes") + "/SandboxCI" + type) {
wrappers common_wrappers
logRotator common_logrotator
Expand Down Expand Up @@ -104,20 +104,6 @@ class CreateSandboxCI {
booleanParam("journals",false)
booleanParam("video_pipeline",false)
booleanParam("video_encode_worker",false)
} else if (type == 'ProspectusDaily') {
predefinedProp('dns_name','prospectus-rebrand')
predefinedProp('name_tag','prospectus-rebrand')

predefinedProp('server_type', 'full_edx_installation_from_scratch')
booleanParam('recreate', true)
booleanParam('edxapp', false)
booleanParam('testcourses', false)
booleanParam('performance_course', false)
booleanParam('demo_test_course', false)
booleanParam('edx_demo_course', false)
booleanParam('forum', false)
booleanParam('prospectus', true)
booleanParam('ecommerce', false)
}
}
}
Expand Down