-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
azure-pipelines.yml
45 lines (43 loc) · 1.23 KB
/
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
35
36
37
38
39
40
41
42
43
jobs:
- job: core
steps:
- task: Gradle@2
displayName: Build & test
env:
AWS_ACCESS_KEY_ID: $(aws.accessKeyId)
AWS_SECRET_ACCESS_KEY: $(aws.secretAccessKey)
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
env:
AWS_ACCESS_KEY_ID: $(aws.accessKeyId)
AWS_SECRET_ACCESS_KEY: $(aws.secretAccessKey)
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
env:
AWS_ACCESS_KEY_ID: $(aws.accessKeyId)
AWS_SECRET_ACCESS_KEY: $(aws.secretAccessKey)
inputs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: '--continue -x testcontainers:check -x jdbc-test:check'
tasks: 'check'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'