Skip to content

Commit

Permalink
rm usage of 'jenkins-master' node label
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Jun 20, 2019
1 parent e3dcbfd commit 4f13a86
Show file tree
Hide file tree
Showing 63 changed files with 62 additions and 64 deletions.
2 changes: 0 additions & 2 deletions jobs/node_cleanup.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ job('sqre/infra/jenkins-node-cleanup') {
booleanParam('FORCE_CLEANUP', false, 'Force cleanup of node workspace(s) regardless of free space remaining threshold. Note that the workspace of active jobs *will not* be cleaned up.')
}

// don't tie up a beefy build slave
label('jenkins-master')
concurrentBuild(false)

triggers {
Expand Down
2 changes: 1 addition & 1 deletion pipelines/dax/docker/build_dev.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/dax/docker/build_imgserv.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/dax/release/rebuild_publish_qserv_dev.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/lib/util.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ def void withGithubAdminCredentials(Closure run) {
* @param run Closure Invoked inside of node step
*/
def void nodeTiny(Closure run) {
node('jenkins-master') {
node {
timeout(time: 5, unit: 'MINUTES') {
run()
}
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/build_publish.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/codekit/github_get_ratelimit.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/codekit/github_tag_release.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/codekit/github_tag_teams.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/docker/build_stack.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/nightly_release.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/nightly_release_cron.groovy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.time.LocalDate
import java.time.ZoneId

node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/official_release.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/run_publish.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/run_rebuild.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/tarball.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
if (params.WIPEOUT) {
deleteDir()
}
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/tarball_matrix.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/weekly_release.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release/weekly_release_cron.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import java.time.LocalDate
import java.time.ZoneId
import java.time.format.DateTimeFormatter

node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/scipipe/ap_verify.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
if (params.WIPEOUT) {
deleteDir()
}
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sims/weekly_release.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/backup/build_s3backup.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/backup/build_sqre_github_snapshot.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/backup/nightly_sqre_github_snapshot.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/backup/s3backup_eups.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/bench_gitlfs.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/ghslacker.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_docker_from_arg.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_docker_gitlfs_inside.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_docker_gitlfs_outside.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_pipeline.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_pipeline_config_file.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_pipeline_docker.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/ci_ci/test_pipeline_write.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_awscli.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_cmirror.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_codekit.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_dind.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_docker_gc.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_gitlfs.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_gitlfs_server.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_jenkins_swarm_client.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_layercake.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_ltd_mason.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_newinstall.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_nginx_ssl_proxy.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_postqa.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_s3cmd.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_s3sync.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_sciplatlab.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_tag_monger.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/build_wget.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/documenteer.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import groovy.transform.Field

node('jenkins-master') {
node {
if (params.WIPEOUT) {
deleteDir()
}
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_daily.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_daily_cron.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_monthly.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_monthly_cron.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_weekly.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/infra_weekly_cron.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/tag_monger.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/infra/update_cmirror.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import groovy.transform.Field

@Field String mirrorBaseUrl = 'https://repo.continuum.io/pkgs'

node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down
2 changes: 1 addition & 1 deletion pipelines/sqre/validate_drp.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// squash. A rename needs to be coordinated with a simultaneous fixing up of
// the squash database.

node('jenkins-master') {
node {
if (params.WIPEOUT) {
deleteDir()
}
Expand Down
2 changes: 1 addition & 1 deletion pipelines/stack_os_matrix.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('jenkins-master') {
node {
dir('jenkins-dm-jobs') {
checkout([
$class: 'GitSCM',
Expand Down

0 comments on commit 4f13a86

Please sign in to comment.