Merge pull request #7852 from vpolikarpov-akvelon/macos-dont-copy-test-results

[mac OS] Don't try to copy test results to artifacts directory
This commit is contained in:
Alexey-Ayupov
2023-07-11 12:05:53 +02:00
committed by GitHub

View File

@@ -100,12 +100,8 @@ jobs:
PACKER_LOG_PATH: $(Agent.TempDirectory)/packer-log.txt PACKER_LOG_PATH: $(Agent.TempDirectory)/packer-log.txt
- bash: | - bash: |
echo "Copy image output files" echo "Copy software report files"
cp -R "images/image-output/software-report/." "$(Build.ArtifactStagingDirectory)/" cp -vR "images/image-output/software-report/." "$(Build.ArtifactStagingDirectory)/"
echo "Copy test results"
cp -R "images/image-output/tests/." "$(Common.TestResultsDirectory)/"
ls $(Common.TestResultsDirectory)
echo "Put VM name to 'VM_Done_Name' file" echo "Put VM name to 'VM_Done_Name' file"
echo "$(VirtualMachineName)" > "$(Build.ArtifactStagingDirectory)/VM_Done_Name" echo "$(VirtualMachineName)" > "$(Build.ArtifactStagingDirectory)/VM_Done_Name"