Repository: beam Updated Branches: refs/heads/master ec5e72403 -> eac561f59
Extend nightly build timeout to 4 hours Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/742a0823 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/742a0823 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/742a0823 Branch: refs/heads/master Commit: 742a082302d328ed0c6a20c611d7ddf8da64c272 Parents: ec5e724 Author: Kenneth Knowles <k...@google.com> Authored: Mon Oct 9 09:25:55 2017 -0700 Committer: Kenneth Knowles <k...@google.com> Committed: Mon Oct 9 09:25:55 2017 -0700 ---------------------------------------------------------------------- .../job_beam_Release_NightlySnapshot.groovy | 21 +++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/742a0823/.test-infra/jenkins/job_beam_Release_NightlySnapshot.groovy ---------------------------------------------------------------------- diff --git a/.test-infra/jenkins/job_beam_Release_NightlySnapshot.groovy b/.test-infra/jenkins/job_beam_Release_NightlySnapshot.groovy index 7284acd..394a0c4 100644 --- a/.test-infra/jenkins/job_beam_Release_NightlySnapshot.groovy +++ b/.test-infra/jenkins/job_beam_Release_NightlySnapshot.groovy @@ -27,8 +27,12 @@ mavenJob('beam_Release_NightlySnapshot') { // Execute concurrent builds if necessary. concurrentBuild() - // Set common parameters. - common_job_properties.setTopLevelMainJobProperties(delegate) + // Set common parameters. Huge timeout because we really do need to + // run all the ITs and release the artifacts. + common_job_properties.setTopLevelMainJobProperties( + delegate, + 'master', + 240) // Set maven paramaters. common_job_properties.setMavenConfig(delegate) @@ -41,5 +45,16 @@ mavenJob('beam_Release_NightlySnapshot') { 'd...@beam.apache.org') // Maven goals for this job. - goals('-B -e clean deploy -P release,dataflow-runner -DskipITs=false -DintegrationTestPipelineOptions=\'[ "--project=apache-beam-testing", "--tempRoot=gs://temp-storage-for-end-to-end-tests", "--runner=TestDataflowRunner" ]\'') + goals('''\ + clean deploy + --batch-mode \ + --errors \ + -P release,dataflow-runner \ + -D skipITs=false \ + -D integrationTestPipelineOptions=\'[ \ + "--project=apache-beam-testing", \ + "--tempRoot=gs://temp-storage-for-end-to-end-tests", \ + "--runner=TestDataflowRunner" \ + ]\'\ + ''') }