From 5aa2d8db8e9b367eb4884815aa7f7f0f000118e1 Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 31 May 2022 11:49:03 -0400 Subject: [PATCH] Add Java 17 to Ubuntu PR pipeline (#828) Azure now supports Java 17 on their Ubuntu pipeline so we can add it. Co-authored-by: dotasek --- pull-request-pipeline.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pull-request-pipeline.yml b/pull-request-pipeline.yml index 508451c92..a3b4a3ff9 100644 --- a/pull-request-pipeline.yml +++ b/pull-request-pipeline.yml @@ -4,13 +4,14 @@ pr: - master - release -# Different users have different machine setups, we run the build three times, on ubuntu, osx, and windows +# Different users have different machine setups, we run the build three times, on ubuntu, osx, and windows. +# Azure doesn't always have the same Java versions on each system, so they are enumerated for each system independently. jobs: - template: pull-request-pipeline-parameterized.yml parameters: images: - name: ubuntu-latest - jdkVersions: [ '1.8', '1.11' ] + jdkVersions: [ '1.8', '1.11', '1.17'] - name: macos-latest jdkVersions: [ '1.8', '1.11', '1.17'] - name: windows-2019