Browse Source

Add buildtools to artifacts needed for testing

Also remove not needed change
John Kleinschmidt 6 years ago
parent
commit
e85ea5dcff
1 changed files with 15 additions and 2 deletions
  1. 15 2
      vsts.yml

+ 15 - 2
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: