forked from statiqdev/Statiq.Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
44 lines (44 loc) · 981 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
jobs:
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: UseDotNet@2
inputs:
version: '2.x'
- task: UseDotNet@2
inputs:
version: '3.0.x'
- script: build -target BuildServer
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
STATIQ_GITHUB_TOKEN: $(STATIQ_GITHUB_TOKEN)
MYGET_API_KEY: $(MYGET_API_KEY)
- job: Linux
pool:
vmImage: 'ubuntu 16.04'
steps:
- task: UseDotNet@2
inputs:
version: '2.x'
- task: UseDotNet@2
inputs:
version: '3.0.x'
includePreviewVersions: true
- script: pwsh ./build.ps1 -target BuildServer
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
- job: Mac
pool:
vmImage: 'macOS-10.13'
steps:
- task: UseDotNet@2
inputs:
version: '2.x'
- task: UseDotNet@2
inputs:
version: '3.0.x'
includePreviewVersions: true
- script: pwsh ./build.ps1 -target BuildServer
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)