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 | |
| parent | 2ac2b5f3da6b46ff2ae900550bd7c44f39c57dcd (diff) | |
| download | vcpkg-b271aeffa25c53f3750f58ad6209f3fa7c528716.tar.gz vcpkg-b271aeffa25c53f3750f58ad6209f3fa7c528716.zip | |
[VCPKG baseline] Fix many ports (#11559)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/azure-pipelines/linux/azure-pipelines.yml | 7 | ||||
| -rw-r--r-- | scripts/ci.baseline.txt | 3 |
2 files changed, 6 insertions, 4 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
diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt index 5d6ada674..9cb540ae6 100644 --- a/scripts/ci.baseline.txt +++ b/scripts/ci.baseline.txt @@ -76,9 +76,6 @@ anyrpc:x86-windows=ignore anyrpc:x64-windows-static=ignore
apr:arm-uwp=fail
apr:x64-uwp=fail
-# Static builds fail beacuase apr-1-config is installed in bin
-apr:x64-linux=fail
-apr:x64-osx=fail
# Cross compiling CI machine cannot run gen_test_char to generate apr_escape_test_char.h
apr:arm64-windows=fail
argtable2:arm-uwp=fail
|
