forked from haskell/haskell-ide-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
44 lines (42 loc) · 974 Bytes
/
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
# Build master, branches starting with `azure` and tags commits
trigger:
branches:
include:
- master
- azure*
tags:
include:
- '*'
paths:
exclude:
- .circleci
- docs
- licenses
- logos
- LICENSE
- '*.md'
# Enable PR triggers that target the master branch
pr:
autoCancel: true # cancel previous builds on push
branches:
include:
- master
paths:
exclude:
- .circleci
- docs
- licenses
- logos
- LICENSE
- '*.md'
jobs:
- template: ./.azure/linux-stack.yml
- template: ./.azure/linux-cabal.yml
- template: ./.azure/windows-stack.yml
- template: ./.azure/windows-cabal.yml
- template: ./.azure/macos-stack.yml
- template: ./.azure/linux-installhs-stack.yml
- template: ./.azure/windows-installhs-stack.yml
- template: ./.azure/windows-installhs-cabal.yml
- template: ./.azure/macos-installhs-cabal.yml
- template: ./.azure/macos-installhs-stack.yml