From 01af7641d896804c7581974713f9bfadbd25643f Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Tue, 12 Feb 2019 23:51:36 +1100 Subject: [PATCH] Add non-native JDK11 CI job --- azure-pipelines.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cb224d3a39149..b4c37a31a24b7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,7 +10,7 @@ trigger: - master jobs: -- job: Build +- job: Build_Native_Linux timeoutInMinutes: 60 pool: vmImage: 'Ubuntu 16.04' @@ -97,5 +97,21 @@ jobs: - task: Maven@3 displayName: 'Maven Build' inputs: + goals: 'install' + options: '-B --settings azure-mvn-settings.xml -Dno-native' + +- job: Build_JDK11_Linux + timeoutInMinutes: 60 + pool: + vmImage: 'Ubuntu 16.04' + + variables: + imageName: 'shamrock-jdk11:$(build.buildId)' + + steps: + - task: Maven@3 + displayName: 'Maven Build' + inputs: + jdkVersionOption: '1.11' goals: 'install' options: '-B --settings azure-mvn-settings.xml -Dno-native' \ No newline at end of file