diff options
| author | Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> | 2020-05-26 02:52:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-25 11:52:48 -0700 |
| commit | b271aeffa25c53f3750f58ad6209f3fa7c528716 (patch) | |
| tree | e2d85c56570965e26803b629502e9bcb7efa648d /scripts/azure-pipelines/linux | |
| parent | 2ac2b5f3da6b46ff2ae900550bd7c44f39c57dcd (diff) | |
| download | vcpkg-b271aeffa25c53f3750f58ad6209f3fa7c528716.tar.gz vcpkg-b271aeffa25c53f3750f58ad6209f3fa7c528716.zip | |
[VCPKG baseline] Fix many ports (#11559)
Diffstat (limited to 'scripts/azure-pipelines/linux')
| -rw-r--r-- | scripts/azure-pipelines/linux/azure-pipelines.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/azure-pipelines/linux/azure-pipelines.yml b/scripts/azure-pipelines/linux/azure-pipelines.yml index 67e9945a7..c51515148 100644 --- a/scripts/azure-pipelines/linux/azure-pipelines.yml +++ b/scripts/azure-pipelines/linux/azure-pipelines.yml @@ -19,6 +19,11 @@ jobs: inputs:
filePath: scripts/azure-pipelines/linux/initialize-environment.sh
- bash: |
+ sudo mkdir /home/agent -m=777
+ sudo chown `id -u` /home/agent
+ exit 0
+ displayName: 'Create /home/agent'
+ - bash: |
df -h
displayName: 'Report on Disk Space After Environment'
condition: always()
@@ -32,7 +37,7 @@ jobs: - powershell: |
$skipList = ./scripts/azure-pipelines/generate-skip-list.ps1 -Triplet "x64-linux" -BaselineFile "$(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt"
mkdir $(System.ArtifactsDirectory)/xml-results
- $env:HOME = '/home/root'
+ $env:HOME = '/home/agent'
./vcpkg ci x64-linux --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-linux.xml" --exclude=$skipList --binarycaching
displayName: '** Test Modified Ports **'
- task: PowerShell@2
|
