Skip to content

Commit 7a80a41

Browse files
committed
CI: add azure artifacts to existing github release
1 parent d9ab2e5 commit 7a80a41

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

azure-pipelines.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,19 @@ stages:
1111
- stage: build
1212
jobs:
1313
- job: Linux
14-
pool:
15-
vmImage: 'ubuntu-16.04'
14+
pool: { vmImage: 'ubuntu-16.04' }
1615
steps:
1716
- template: ci/azure_build_steps.yml
1817
- job: Win64
19-
pool:
20-
vmImage: 'vs2017-win2016'
18+
pool: { vmImage: 'vs2017-win2016' }
2119
steps:
2220
- bash: 'echo "##vso[task.prependpath]C:\\Program Files\\CMake\\bin\\"'
2321
displayName: 'Fix PATH'
2422
- template: ci/azure_build_steps.yml
2523
parameters:
2624
cmake_stepvars: '-A x64'
2725
- job: MacOS
28-
pool:
29-
vmImage: 'macOS-10.13'
26+
pool: { vmImage: 'macOS-10.13' }
3027
variables:
3128
MACOSX_DEPLOYMENT_TARGET: '10.9'
3229
steps:
@@ -35,8 +32,7 @@ stages:
3532
run_tests: true
3633
cmake_stepvars: '-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=1 -DCMAKE_POLICY_DEFAULT_CMP0069=NEW'
3734
- job: manylinux
38-
pool:
39-
vmImage: 'ubuntu-16.04'
35+
pool: { vmImage: 'ubuntu-16.04' }
4036
container: quay.io/pypa/manylinux2010_x86_64:latest
4137
steps:
4238
- bash: CFLAGS="-flto -static-libstdc++ -std=c++14" ./standalone_compilation_linux.sh
@@ -45,8 +41,7 @@ stages:
4541
- stage: Upload
4642
jobs:
4743
- job: Upload
48-
pool:
49-
vmImage: 'ubuntu-16.04'
44+
pool: { vmImage: 'ubuntu-16.04' }
5045
steps:
5146
- bash: mkdir upload
5247
- task: DownloadPipelineArtifact@2
@@ -55,7 +50,10 @@ stages:
5550
- bash: mv upload/manylinux2010/liblsl.so upload/liblsl-manylinux2010-liblsl64.so
5651
- task: GithubRelease@0
5752
inputs:
53+
action: edit
54+
tag: $(Build.SourceBranchName)
5855
githubConnection: upload
5956
draft: true
57+
addChangelog: false
6058
assets: |
6159
upload/**/liblsl-*

0 commit comments

Comments
 (0)