mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 03:19:01 +08:00
100 lines
4.2 KiB
YAML
100 lines
4.2 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
parameters:
|
|
- name: jobName
|
|
type: string
|
|
- name: dockerImage
|
|
type: string
|
|
- name: tripletPattern
|
|
displayName: 'Enable the triplets which contain this substring'
|
|
type: string
|
|
default: ''
|
|
|
|
jobs:
|
|
- job: ${{ parameters.jobName }}
|
|
condition: and(succeeded(), contains('^${{ replace(parameters.jobName, '_', '-') }}$', '${{ parameters.tripletPattern }}'))
|
|
pool:
|
|
name: PrAnd-WUS
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 1440 # 1 day
|
|
cancelTimeoutInMinutes: 1
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: /mnt/vcpkg-ci
|
|
- name: VCPKG_DOWNLOADS
|
|
value: /mnt/vcpkg-ci/downloads
|
|
- name: ANDROID_NDK_HOME
|
|
value: /android-ndk-r27c
|
|
steps:
|
|
# Note: /mnt is the Azure machines' temporary disk.
|
|
- bash: |
|
|
sudo mkdir /home/agent -m=777
|
|
sudo chown `id -u` /home/agent
|
|
sudo mkdir ${{ variables.WORKING_ROOT }} -m=777
|
|
sudo rm -rf ${{ variables.WORKING_ROOT }}/failure-logs
|
|
sudo mkdir ${{ variables.WORKING_ROOT }}/failure-logs -m=777
|
|
sudo mkdir ${{ variables.VCPKG_DOWNLOADS }} -m=777
|
|
exit 0
|
|
displayName: 'Create working directories'
|
|
- task: AzureCLI@2
|
|
displayName: '*** Test Modified Ports'
|
|
inputs:
|
|
azureSubscription: 'VcpkgPrFleet'
|
|
scriptType: bash
|
|
scriptLocation: 'inlineScript' # Be very very careful that the exit code from the last pwsh is reported correctly
|
|
inlineScript: |
|
|
az acr login --name vcpkgandroidwus
|
|
docker pull ${{ parameters.dockerImage }}
|
|
docker run --rm \
|
|
--mount type=bind,source=$(Build.Repository.LocalPath),target=/vcpkg \
|
|
${{ parameters.dockerImage }} \
|
|
./bootstrap-vcpkg.sh
|
|
end=`date -u -d "2 days" '+%Y-%m-%dT%H:%MZ'`
|
|
assetSas=`az storage container generate-sas --name cache --account-name vcpkgassetcachewus --as-user --auth-mode login --https-only --permissions rcl --expiry $end -o tsv`
|
|
binarySas=`az storage container generate-sas --name cache --account-name vcpkgbinarycachewus --as-user --auth-mode login --https-only --permissions rclw --expiry $end -o tsv`
|
|
echo Minting SAS tokens valid through $end
|
|
USER=$(id --user)
|
|
docker run --init -i \
|
|
-a stderr \
|
|
-a stdout \
|
|
--user $USER \
|
|
--mount type=bind,source=$(Build.Repository.LocalPath),target=/vcpkg \
|
|
--mount type=bind,source=$(WORKING_ROOT)/failure-logs,target=/vcpkg/failure-logs \
|
|
--mount type=bind,source=/mnt/vcpkg-ci,target=/mnt/vcpkg-ci \
|
|
--env X_VCPKG_ASSET_SOURCES="x-azurl,https://vcpkgassetcachewus.blob.core.windows.net/cache,$assetSas,readwrite" \
|
|
--env ANDROID_NDK_HOME="${{ variables.ANDROID_NDK_HOME }}" \
|
|
${{ parameters.dockerImage }} \
|
|
pwsh \
|
|
-File /vcpkg/scripts/azure-pipelines/test-modified-ports.ps1 \
|
|
-Triplet ${{ replace(parameters.jobName, '_', '-') }} \
|
|
-BuildReason $(Build.Reason) \
|
|
-BinarySourceStub "x-azblob,https://vcpkgbinarycachewus.blob.core.windows.net/cache,$binarySas" \
|
|
-WorkingRoot ${{ variables.WORKING_ROOT }}
|
|
- task: PublishPipelineArtifact@1
|
|
displayName: "Publish Artifact: failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
inputs:
|
|
targetPath: '$(WORKING_ROOT)/failure-logs'
|
|
artifact: "failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|
|
- bash: |
|
|
python3 scripts/file_script.py /mnt/vcpkg-ci/installed/vcpkg/info/
|
|
displayName: 'Build a file list for all packages'
|
|
condition: always()
|
|
- task: PublishPipelineArtifact@1
|
|
displayName: "Publish Artifact: file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
condition: always()
|
|
inputs:
|
|
targetPath: scripts/list_files
|
|
artifact: "file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
- task: PublishTestResults@2
|
|
displayName: 'Publish Test Results'
|
|
condition: ne(variables['XML_RESULTS_FILE'], '')
|
|
inputs:
|
|
testRunTitle: ${{ replace(parameters.jobName, '_', '-') }}
|
|
testResultsFormat: xUnit
|
|
testResultsFiles: $(XML_RESULTS_FILE)
|
|
platform: ${{ replace(parameters.jobName, '_', '-') }}
|