Skip to content

Commit b869c3c

Browse files
authored
Add back Extract EndToEnd.zip and SetupFunctionalTests script (#5734)
* add back SetupFunctionalTests script * update work path
1 parent c71593c commit b869c3c

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

eng/pipelines/templates/Apex_Tests_On_Windows_Daily.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)