Skip to content

Commit

Permalink
Increase azure pipeline timeout to 90m
Browse files Browse the repository at this point in the history
  • Loading branch information
aguibert committed Jul 15, 2019
1 parent e969b61 commit da1e16b
Showing 1 changed file with 22 additions and 19 deletions.
41 changes: 22 additions & 19 deletions azure-pipelines.yml
@@ -1,21 +1,24 @@
steps:
- task: Gradle@2
displayName: Build core
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue'
tasks: 'testcontainers:check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- task: Gradle@2
displayName: Build modules
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue -x testcontainers:check'
tasks: 'check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
jobs:
- job: Default
timeoutInMinutes: 90
steps:
- task: Gradle@2
displayName: Build core
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue'
tasks: 'testcontainers:check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- task: Gradle@2
displayName: Build modules
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue -x testcontainers:check'
tasks: 'check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'


0 comments on commit da1e16b

Please sign in to comment.