mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 05:18:14 +00:00
Azure now supports Java 17 on their Ubuntu pipeline so we can add it. Co-authored-by: dotasek <david.otasek@smilecdr.com>
18 lines
590 B
YAML
18 lines
590 B
YAML
trigger: none
|
|
|
|
pr:
|
|
- master
|
|
- release
|
|
|
|
# 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', '1.17']
|
|
- name: macos-latest
|
|
jdkVersions: [ '1.8', '1.11', '1.17']
|
|
- name: windows-2019
|
|
jdkVersions: [ '1.8', '1.11', '1.17'] |