-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
69 lines (57 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
trigger:
- master
jobs:
- job: Windows
pool:
vmImage: 'windows-latest'
steps:
- task: PowerShell@2
displayName: "Build"
inputs:
filePath: build.ps1
- task: PublishPipelineArtifact@0
displayName: "Publish WinForms package"
inputs:
artifactName: 'WinForms'
targetPath: 'artifacts/WinForms'
- task: PublishPipelineArtifact@0
displayName: "Publish Wpf package"
inputs:
artifactName: 'Wpf'
targetPath: 'artifacts/Wpf'
- job: Linux
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Bash@3
displayName: "Install gtk-sharp2"
inputs:
targetType: inline
script: 'sudo apt-get install gtk-sharp2'
- task: Bash@3
displayName: "Build"
inputs:
filePath: build.sh
- task: PublishPipelineArtifact@0
displayName: "Publish Gtk2 package"
inputs:
artifactName: 'Gtk2'
targetPath: 'artifacts/Gtk2'
- job: macOS
pool:
vmImage: 'macOS-latest'
steps:
- task: Bash@3
displayName: "Install dmgbuild"
inputs:
targetType: inline
script: 'pip3 install dmgbuild'
- task: Bash@3
displayName: "Build"
inputs:
filePath: build.sh
- task: PublishPipelineArtifact@0
displayName: "Publish Mac64 package"
inputs:
artifactName: 'Mac64'
targetPath: 'artifacts/Mac64'