forked from mwcproject/mwcbuildpipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
45 lines (44 loc) · 1.33 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
schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- master
always: true
jobs:
- job: linux
timeoutInMinutes: 120
pool:
vmImage: ubuntu-18.04
steps:
- script: './setup_linux.sh'
- script: './build-qt-wallet-linux.sh $(Build.BuildNumber)'
- script: './deploy_linux.sh $(Build.BuildNumber) $(UPLOADCREDS)'
displayName: 'Linux64'
- job: macos
timeoutInMinutes: 120
pool:
vmImage: macos-10.14
steps:
- script: './setup_macos.sh $(UPLOADCREDS)'
- script: './build-qt-wallet-macos.sh $(Build.BuildNumber) $(APPLE_ONE_TIME_ID) $(UPLOADCREDS) $(decrypt_pw) $(Apple_App_Specific_Pw)'
- script: './deploy_macos.sh $(Build.BuildNumber) $(UPLOADCREDS)'
displayName: 'MacOSX'
- job: windows
timeoutInMinutes: 120
pool:
vmImage: windows-latest
steps:
- script: 'setup_windows.bat $(UPLOADCREDS)'
- script: 'build-qt-wallet-windows.bat $(Build.BuildNumber)'
- script: 'deploy_windows.bat $(Build.BuildNumber) $(UPLOADCREDS)'
displayName: 'Windows64'
- job: windows32
timeoutInMinutes: 120
pool:
vmImage: windows-latest
steps:
- script: 'setup_windows32.bat $(UPLOADCREDS)'
- script: 'build-qt-wallet-windows32.bat $(Build.BuildNumber)'
- script: 'deploy_windows32.bat $(Build.BuildNumber) $(UPLOADCREDS)'
displayName: 'Windows32'