forked from HaxeFoundation/hxcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
42 lines (41 loc) · 1.12 KB
/
azure-pipelines.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
variables:
- group: variables-haxe
- name: AZURE_PIPELINES_REPO_URL
value: $(Build.Repository.Uri)
- name: AZURE_PIPELINES_BRANCH
value: $(Build.SourceBranchName)
- name: HXCPP_COMPILE_CACHE
value: $(Agent.TempDirectory)/hxcache
stages:
- stage: StageTest
jobs:
- template: tools/azure-pipelines/build.yml
parameters:
name: Linux64
vmImage: ubuntu-20.04
platform: linux64
arch: 64
- template: tools/azure-pipelines/build.yml
parameters:
name: Linux32
vmImage: ubuntu-20.04
platform: linux64
arch: 32
- template: tools/azure-pipelines/build.yml
parameters:
name: Mac
vmImage: macOS-10.15
platform: mac
arch: 64
- template: tools/azure-pipelines/build.yml
parameters:
name: Windows64
vmImage: windows-2019
platform: windows
arch: 64
- template: tools/azure-pipelines/build.yml
parameters:
name: Windows32
vmImage: windows-2019
platform: windows
arch: 32