hyperspace-desktop-client-w.../azure-pipelines.yml

39 lines
1006 B
YAML
Raw Normal View History

2019-05-12 22:58:07 +02:00
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-latest'
steps:
- template: .azure/setup.yml
- template: .azure/build-web.yml
- script: |
npm run build-desktop-linux
displayName: 'Build desktop client'
2019-05-12 22:58:07 +02:00
displayName: 'Build Linux client'
2019-05-12 22:58:07 +02:00
- job: macOS
pool:
2019-05-12 22:58:52 +02:00
vmImage: 'macOS-latest'
2019-05-12 22:58:07 +02:00
steps:
2019-05-12 23:57:28 +02:00
- task: InstallAppleCertificate@2
inputs:
certSecureFile: 'Certificates.p12'
certPwd: 'asriel32!'
keychain: 'temp'
signingIdentity: 'Marquis Kurt'
2019-05-12 22:58:07 +02:00
- template: .azure/setup.yml
- template: .azure/build-web.yml
- script: |
2019-05-12 23:04:34 +02:00
npm run build-desktop-darwin
displayName: 'Build desktop client'
2019-05-12 22:58:07 +02:00
displayName: 'Build macOS client'
2019-05-12 22:58:07 +02:00
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- template: .azure/setup.yml
- template: .azure/build-web.yml
- script: |
npm run build-desktop-win
displayName: 'Build desktop client'
2019-05-12 22:58:07 +02:00
displayName: 'Build Windows client'