|
5 | 5 | - master |
6 | 6 |
|
7 | 7 | jobs: |
8 | | -- job: windows_debug_x86 |
9 | | - pool: |
10 | | - name: Hosted |
11 | | - demands: Cmd |
12 | | - steps: |
13 | | - - task: BatchScript@1 |
14 | | - displayName: 'Run scripts/cibuild.cmd' |
15 | | - inputs: |
16 | | - filename: scripts/cibuild.cmd |
17 | | - arguments: '-configuration Debug -architecture x86' |
| 8 | +- template: azure-windows.yml |
| 9 | + parameters: |
| 10 | + name: windows_debug_x86 |
| 11 | + pool: Hosted |
| 12 | + configuration: Debug |
| 13 | + architecture: x86 |
18 | 14 |
|
19 | | -- job: windows_release_x86 |
20 | | - pool: |
21 | | - name: Hosted |
22 | | - demands: Cmd |
23 | | - steps: |
24 | | - - task: BatchScript@1 |
25 | | - displayName: 'Run scripts/cibuild.cmd' |
26 | | - inputs: |
27 | | - filename: scripts/cibuild.cmd |
28 | | - arguments: '-configuration Release -architecture x86' |
| 15 | +- template: azure-windows.yml |
| 16 | + parameters: |
| 17 | + name: windows_release_x86 |
| 18 | + pool: Hosted |
| 19 | + configuration: Release |
| 20 | + architecture: x86 |
29 | 21 |
|
30 | | -- job: windows_debug_x64 |
31 | | - pool: |
32 | | - name: Hosted |
33 | | - demands: Cmd |
34 | | - steps: |
35 | | - - task: BatchScript@1 |
36 | | - displayName: 'Run scripts/cibuild.cmd' |
37 | | - inputs: |
38 | | - filename: scripts/cibuild.cmd |
39 | | - arguments: '-configuration Debug -architecture x64' |
| 22 | +- template: azure-windows.yml |
| 23 | + parameters: |
| 24 | + name: windows_debug_x64 |
| 25 | + pool: Hosted |
| 26 | + configuration: Debug |
| 27 | + architecture: x64 |
40 | 28 |
|
41 | | -- job: windows_release_x64 |
42 | | - pool: |
43 | | - name: Hosted |
44 | | - demands: Cmd |
45 | | - steps: |
46 | | - - task: BatchScript@1 |
47 | | - displayName: 'Run scripts/cibuild.cmd' |
48 | | - inputs: |
49 | | - filename: scripts/cibuild.cmd |
50 | | - arguments: '-configuration Release -architecture x64' |
| 29 | +- template: azure-windows.yml |
| 30 | + parameters: |
| 31 | + name: windows_release_x64 |
| 32 | + pool: Hosted |
| 33 | + configuration: Release |
| 34 | + architecture: x64 |
51 | 35 |
|
52 | | -- job: ubuntu_1604_debug_x64 |
53 | | - pool: |
54 | | - name: Hosted Ubuntu 1604 |
55 | | - variables: |
56 | | - RuntimeIdentifier: ubuntu.16.04-x64 |
57 | | - steps: |
58 | | - - task: Bash@3 |
59 | | - displayName: 'Run scripts/cibuild.sh' |
60 | | - inputs: |
61 | | - targetType: filePath |
62 | | - filePath: ./scripts/cibuild.sh |
63 | | - arguments: '--configuration Debug --architecture x64' |
| 36 | +- template: azure-unix.yml |
| 37 | + parameters: |
| 38 | + name: ubuntu_debug_x64 |
| 39 | + pool: Hosted Ubuntu 1604 |
| 40 | + configuration: Debug |
| 41 | + architecture: x64 |
| 42 | + rid: ubuntu.16.04-x64 |
64 | 43 |
|
65 | | -- job: ubuntu_1604_release_x64 |
66 | | - pool: |
67 | | - name: Hosted Ubuntu 1604 |
68 | | - variables: |
69 | | - RuntimeIdentifier: ubuntu.16.04-x64 |
70 | | - steps: |
71 | | - - task: Bash@3 |
72 | | - displayName: 'Run scripts/cibuild.sh' |
73 | | - inputs: |
74 | | - targetType: filePath |
75 | | - filePath: ./scripts/cibuild.sh |
76 | | - arguments: '--configuration Release --architecture x64' |
| 44 | +- template: azure-unix.yml |
| 45 | + parameters: |
| 46 | + name: ubuntu_release_x64 |
| 47 | + pool: Hosted Ubuntu 1604 |
| 48 | + configuration: Release |
| 49 | + architecture: x64 |
| 50 | + rid: ubuntu.16.04-x64 |
77 | 51 |
|
78 | | -- job: macos_1014_debug_x64 |
79 | | - pool: |
80 | | - name: Hosted macOS |
81 | | - steps: |
82 | | - - task: Bash@3 |
83 | | - displayName: 'Run scripts/cibuild.sh' |
84 | | - inputs: |
85 | | - targetType: filePath |
86 | | - filePath: ./scripts/cibuild.sh |
87 | | - arguments: '--configuration Debug --architecture x64' |
| 52 | +- template: azure-unix.yml |
| 53 | + parameters: |
| 54 | + name: macos_debug_x64 |
| 55 | + pool: Hosted macOS |
| 56 | + configuration: Debug |
| 57 | + architecture: x64 |
88 | 58 |
|
89 | | -- job: macos_1014_release_x64 |
90 | | - pool: |
91 | | - name: Hosted macOS |
92 | | - steps: |
93 | | - - task: Bash@3 |
94 | | - displayName: 'Run scripts/cibuild.sh' |
95 | | - inputs: |
96 | | - targetType: filePath |
97 | | - filePath: ./scripts/cibuild.sh |
98 | | - arguments: '--configuration Release --architecture x64' |
| 59 | +- template: azure-unix.yml |
| 60 | + parameters: |
| 61 | + name: macos_release_x64 |
| 62 | + pool: Hosted macOS |
| 63 | + configuration: Release |
| 64 | + architecture: x64 |
0 commit comments