Add buildtools to artifacts needed for testing
Also remove not needed change
This commit is contained in:
parent
bfaf3f458f
commit
e85ea5dcff
1 changed files with 15 additions and 2 deletions
17
vsts.yml
17
vsts.yml
|
@ -106,12 +106,19 @@ jobs:
|
|||
condition: and(succeeded(), eq(variables['RUN_TESTS'], '1'))
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: Publish libffmpeg.dylib for testing
|
||||
displayName: Publish libffmpeg.dylib for ffmpeg testing
|
||||
inputs:
|
||||
PathtoPublish: '$(System.DefaultWorkingDirectory)/src/out/ffmpeg/libffmpeg.dylib'
|
||||
ArtifactName: ffmpeg
|
||||
condition: and(succeeded(), eq(variables['RUN_TESTS'], '1'))
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: Publish buildtools for ffmpeg testing
|
||||
inputs:
|
||||
PathtoPublish: '$(System.DefaultWorkingDirectory)/src/buildtools'
|
||||
ArtifactName: buildtools
|
||||
condition: and(succeeded(), eq(variables['RUN_TESTS'], '1'))
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: Publish Node.js headers for testing
|
||||
inputs:
|
||||
|
@ -143,11 +150,17 @@ jobs:
|
|||
downloadPath: '$(System.DefaultWorkingDirectory)/src/out'
|
||||
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download ffmpeg.dylib for testing'
|
||||
displayName: 'Download ffmpeg.dylib for testing ffmpeg'
|
||||
inputs:
|
||||
artifactName: ffmpeg
|
||||
downloadPath: '$(System.DefaultWorkingDirectory)/src/out'
|
||||
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download buildtools for testing ffmpeg'
|
||||
inputs:
|
||||
artifactName: buildtools
|
||||
downloadPath: '$(System.DefaultWorkingDirectory)/src'
|
||||
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download Node.js headers'
|
||||
inputs:
|
||||
|
|
Loading…
Reference in a new issue