Skip to content
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
6 changes: 3 additions & 3 deletions JenkinsJobs/AutomatedTests/integrationTests.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def TEST_AGENT = null

pipeline {
options {
timeout(time: 600, unit: 'MINUTES')
timeout(time: 16, unit: 'HOURS') // global timeout (starts at the beginning of this job)
timestamps()
buildDiscarder(logRotator(numToKeepStr:'15', artifactNumToKeepStr:'5'))
skipDefaultCheckout()
Expand Down Expand Up @@ -48,7 +48,7 @@ pipeline {
ANT_HOME = tool(type:'ant', name:'apache-ant-latest')
ANT_OPTS = "-Djava.io.tmpdir=${pathOf(env.WORKSPACE + '/tmp')}"
}
steps {
steps { timeout(time: 8, unit: 'HOURS') { // timeout of test execution (starts after the agent was accessed)
// workspace is not always cleaned (a previous clean-up may have failed). Clean before git cloning or custom tools are installed into workspace.
cleanWs()
checkout scmGit(userRemoteConfigs: [[url: "${scm.userRemoteConfigs[0].url}"]], branches: [[name: "${scm.branches[0].name}"]],
Expand Down Expand Up @@ -92,7 +92,7 @@ pipeline {
""")
}
junit keepLongStdio: true, testResults: '**/eclipse-testing/results/xml/*.xml'
}
}}
post {
always {
script {
Expand Down
Loading