File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,3 +217,18 @@ stages:
217217 definition : $(resources.pipeline.ComponentBuildUnderTest.pipelineID)
218218 artifactName : " VS15"
219219 downloadPath : " $(Pipeline.Workspace)/artifacts"
220+
221+ - powershell : |
222+ $zipPath = "$(Pipeline.Workspace)/artifacts/EndToEnd.zip"
223+ $dest = "$(System.DefaultWorkingDirectory)/artifacts/EndToEnd/"
224+ Write-Output "Extracting '$zipPath' to '$dest'"
225+ Expand-Archive -Path "$zipPath" -DestinationPath "$dest"
226+ $nugetExePath = "$(Pipeline.Workspace)/artifacts/NuGet.exe"
227+ Write-Output "Copying '$nugetExePath' to '$dest'"
228+ Copy-Item -Path "$nugetExePath" -Destination "$dest"
229+ displayName: "Extract EndToEnd.zip"
230+
231+ - task : PowerShell@1
232+ displayName : " SetupFunctionalTests.ps1"
233+ inputs :
234+ scriptName : " $(System.DefaultWorkingDirectory)/artifacts/EndToEnd/scripts/SetupFunctionalTests.ps1"
You can’t perform that action at this time.
0 commit comments