-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines.yml
46 lines (42 loc) · 1.08 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
43
44
45
46
# This is the complex Azure configuration, which is intended for use
# on open source libraries which need compatibility across multiple GHC
# versions, must work with cabal-install, and should be
# cross-platform. For more information and other options, see:
#
# https://docs.haskellstack.org/en/stable/azure_ci/
#
# Copy these contents into the root directory of your Github project in a file
# named azure-pipelines.yml
#
# For better organization, you split various jobs into seprate parts
# and each of them are controlled via individual file.
trigger:
branches:
include:
- '*'
tags:
include:
- '*'
schedules:
- cron: "0 12 * * 4"
displayName: Weekly Friday build
branches:
include:
- master
always: true
jobs:
- template: ./.azure/azure-linux-template.yml
parameters:
name: Linux
vmImage: ubuntu-latest
os: linux
- template: ./.azure/azure-osx-template.yml
parameters:
name: macOS
vmImage: macOS-latest
os: osx
- template: ./.azure/azure-windows-template.yml
parameters:
name: Windows
vmImage: windows-latest
os: windows