forked from OneIdentity/SafeguardDevOpsService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test.yml
34 lines (34 loc) · 884 Bytes
/
build-test.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
variables:
- template: pipeline-templates/global-variables.yml
trigger: none
pr:
branches:
include:
- master
- release-*
jobs:
- job:
displayName: "Windows MSI and Plugin Build"
variables:
- template: pipeline-templates/windows-job-variables.yml
pool:
vmImage: 'windows-latest'
steps:
- template: pipeline-templates/windows-setup-and-key-vault.yml
- template: pipeline-templates/windows-build-steps.yml
- job:
displayName: "Linux Docker Alpine Build"
variables:
imageType: alpine3.12
pool:
vmImage: 'ubuntu-latest'
steps:
- template: pipeline-templates/linux-build-steps.yml
- job:
displayName: "Linux Docker Ubuntu Build"
variables:
imageType: ubuntu20.04
pool:
vmImage: 'ubuntu-latest'
steps:
- template: pipeline-templates/linux-build-steps.yml