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

BEAM-6919 switch snapshot publishing to ubuntu labelled agents #8373

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .test-infra/jenkins/job_Release_NightlySnapshot.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ job('beam_Release_NightlySnapshot') {
concurrentBuild()

// Set common parameters. Timeout is longer, to avoid [BEAM-5774].
commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 200)
commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 200, true, 'ubuntu')

// This is a post-commit job that runs once per day, not for every push.
commonJobProperties.setAutoJob(
Expand All @@ -48,13 +48,18 @@ job('beam_Release_NightlySnapshot') {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks('clean')
}
/*
* Skipping verification on 'ubuntu' labelled nodes since they don't have access to the
* some required GCP resouces.
* TODO: Uncomment this after we publishing snapshots on 'beam' nodes.
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks('build')
commonJobProperties.setGradleSwitches(delegate)
switches('--no-parallel')
switches('--continue')
}
*/
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks('publish')
Expand Down