mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 21:38:15 +00:00
* Redo pull pipeline to check for alternate file encodings * Fix jdkVersion references in pull-request-pipeline * Failing test for Cp1252 encoded Java environments * Fix file encoding mistake * Add fix + refactor test * Backport ParserBase changes and tests to previous versions * And I mean it, this time * Update tx cache resources Co-authored-by: dotasek <david.otasek@smilecdr.com>
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
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:
|
|
# This image is here so that at least one job specifically sets Cp1252 file encodings, which are normally set by the JDK (which Azure can change on each latest image)
|
|
- displayName: ubuntu-latest-java-17-cp1252
|
|
vmImage: ubuntu-latest
|
|
jdkVersion: 1.17
|
|
javaToolOptions: -Dfile.encoding=Cp1252
|
|
- displayName: ubuntu-latest-java-11
|
|
vmImage: ubuntu-latest
|
|
jdkVersion: 1.11
|
|
javaToolOptions:
|
|
- displayName: ubuntu-latest-java-17
|
|
vmImage: ubuntu-latest
|
|
jdkVersion: 1.17
|
|
javaToolOptions:
|
|
- displayName: macos-latest-java-11
|
|
vmImage: macos-latest
|
|
jdkVersion: 1.11
|
|
javaToolOptions:
|
|
- displayName: macos-latest-java-17
|
|
vmImage: macos-latest
|
|
jdkVersion: 1.17
|
|
javaToolOptions:
|
|
- displayName: windows-latest-java-11
|
|
vmImage: windows-latest
|
|
jdkVersion: 1.11
|
|
javaToolOptions:
|
|
- displayName: windows-latest-java-17
|
|
vmImage: windows-latest
|
|
jdkVersion: 1.17
|
|
javaToolOptions:
|