Skip to content

Commit

Permalink
Add CI configuration for separate TCKs run step
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Jun 11, 2019
1 parent db621f8 commit d172d14
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
displayName: 'Maven Build'
inputs:
goals: 'install'
options: '-B --settings azure-mvn-settings.xml -Dnative-image.docker-build -Dtest-postgresql -Dtest-elasticsearch -Dnative-image.xmx=6g -Dnative -Dno-format -Dtcks'
options: '-B --settings azure-mvn-settings.xml -Dnative-image.docker-build -Dtest-postgresql -Dtest-elasticsearch -Dnative-image.xmx=6g -Dnative -Dno-format'

- job: Windows_Build
timeoutInMinutes: 60
Expand Down Expand Up @@ -73,3 +73,25 @@ jobs:
jdkVersionOption: '1.11'
goals: 'install'
options: '-B --settings azure-mvn-settings.xml -Dno-native -Dno-format'

- job: Run_TCKs
timeoutInMinutes: 45
pool:
vmImage: 'Ubuntu 16.04'

variables:
imageName: 'quarkus:$(build.buildId)'

steps:

- displayName: 'Maven Install'
task: Maven@3
inputs:
goals: 'install'
options: '-B --settings azure-mvn-settings.xml -Dno-native -Dno-format -DskipTests'

- displayName: 'Maven Verify'
task: Maven@3
inputs:
goals: 'verify'
options: '-f tcks/pom.xml'

0 comments on commit d172d14

Please sign in to comment.