forked from microsoft/QuantumLibraries
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.yml
More file actions
44 lines (37 loc) · 695 Bytes
/
build.yml
File metadata and controls
44 lines (37 loc) · 695 Bytes
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
#
# Build configuration file to run build on azure-pipelines
#
name: $(Build.Major).$(Build.Minor).$(DayOfMonth)$(rev:rr)
trigger: none
pr:
- main
- feature/*
- features/*
- release/*
schedules:
- cron: "0 9 * * Sat"
displayName: 'Build for Component Governance'
branches:
include:
- main
always: true
variables:
Build.Major: 0
Build.Minor: 16
Drops.Dir: $(Build.ArtifactStagingDirectory)/drops
jobs:
- job: Windows
pool:
vmImage: 'windows-2019'
steps:
- template: Build/steps.yml
- job: macOS
pool:
vmImage: 'macOS-latest'
steps:
- template: Build/steps.yml
- job: Linux
pool:
vmImage: 'ubuntu-latest'
steps:
- template: Build/steps.yml