forked from testcontainers/testcontainers-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
36 lines (34 loc) · 946 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
jobs:
- job: core
steps:
- task: Gradle@2
displayName: Build & test
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue'
tasks: 'testcontainers:check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- job: jdbc
steps:
- task: Gradle@2
displayName: Build & test
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--no-daemon --continue'
tasks: 'jdbc-test:check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- job: modules
steps:
- task: Gradle@2
displayName: Build & test
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--continue -x testcontainers:check -x jdbc-test:check'
tasks: 'check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'