-
Notifications
You must be signed in to change notification settings - Fork 57
/
pull-request-pipeline.yml
65 lines (63 loc) · 2.48 KB
/
pull-request-pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# We only want to trigger a test build on PRs to the main branch.
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: build-and-test-jobs-template.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.11
javaToolOptions: -Dfile.encoding=Cp1252
- displayName: ubuntu-latest-java-11
vmImage: ubuntu-latest
jdkVersion: 1.11
javaToolOptions:
- displayName: macos-latest-java-11
vmImage: macos-latest
jdkVersion: 1.11
javaToolOptions:
- displayName: windows-latest-java-11
vmImage: windows-latest
jdkVersion: 1.11
javaToolOptions:
- template: build-and-exec-jobs-template.yml
parameters:
execTests:
- igName: fhir-tools-ig-exec
vmImage: ubuntu-latest
jdkVersion: 1.11
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: ubuntu-latest
jdkVersion: 1.17
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: windows-latest
jdkVersion: 1.11
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: windows-latest
jdkVersion: 1.17
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: fhir-tools-ig-exec
vmImage: macos-latest
jdkVersion: 1.11
gitRepo: https://github.com/FHIR/fhir-tools-ig.git
- igName: ACME-FSH-IG-Example
vmImage: ubuntu-latest
jdkVersion: 1.11
gitRepo: https://github.com/FirelyTeam/ACME-FSH-IG-Example.git
- igName: ACME-FSH-IG-Example
vmImage: windows-latest
jdkVersion: 1.11
gitRepo: https://github.com/FirelyTeam/ACME-FSH-IG-Example.git
- igName: ACME-FSH-IG-Example
vmImage: macos-latest
jdkVersion: 1.11
gitRepo: https://github.com/FirelyTeam/ACME-FSH-IG-Example.git