-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
30 lines (22 loc) · 863 Bytes
/
azure-pipelines.yml
File metadata and controls
30 lines (22 loc) · 863 Bytes
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
trigger:
- master
pool:
vmImage: 'macos-latest'
steps:
- script: git submodule update --init --recursive
displayName: 'Checkout all submodules'
- script: brew install automake autoconf libtool gettext
displayName: 'Install build tools'
- script: make
displayName: 'Build all'
- script: tar -cvJf '$(Build.ArtifactStagingDirectory)/Python.framework-full-$(Build.BuildId).txz' '$(Build.SourcesDirectory)/Python.framework'
displayName: Make tarball for full Python.framework
- script: |
make slim
tar -cvJf '$(Build.ArtifactStagingDirectory)/Python.framework-slim-$(Build.BuildId).txz' '$(Build.SourcesDirectory)/Python.framework'
displayName: Make tarball for slim Python.framework
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'