mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
[vcpkg] Copy macos pipelines into azure-pipelines.yml
This commit is contained in:
parent
c444db5f5a
commit
7341c295b6
@ -1,56 +1,44 @@
|
|||||||
# Copyright (c) Microsoft Corporation.
|
# Copyright (c) Microsoft Corporation.
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
#
|
#
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
clean-tombstones: 'false'
|
windows-pool: 'PrWin-2020-04-22'
|
||||||
stages:
|
|
||||||
- stage: Clean_Tombstones
|
|
||||||
displayName: 'Clean Tombstones'
|
|
||||||
jobs:
|
|
||||||
- job:
|
|
||||||
displayName: 'Clean Tombstones'
|
|
||||||
pool:
|
|
||||||
name: PrWin-2020-04-22
|
|
||||||
condition: eq(variables['clean-tombstones'], 'true')
|
|
||||||
timeoutInMinutes: 10
|
|
||||||
steps:
|
|
||||||
- task: PowerShell@2
|
|
||||||
displayName: 'Initialize Environment'
|
|
||||||
inputs:
|
|
||||||
filePath: 'scripts/azure-pipelines/windows/initialize-environment.ps1'
|
|
||||||
- powershell: |
|
|
||||||
Remove-Item archives\fail -Force -Recurse
|
|
||||||
displayName: 'Delete archives\fail'
|
|
||||||
|
|
||||||
- stage: Build
|
|
||||||
jobs:
|
jobs:
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: x86-windows
|
triplet: x86-windows
|
||||||
jobName: x86_windows
|
jobName: x86_windows
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: x64-windows
|
triplet: x64-windows
|
||||||
jobName: x64_windows
|
jobName: x64_windows
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: x64-windows-static
|
triplet: x64-windows-static
|
||||||
jobName: x64_windows_static
|
jobName: x64_windows_static
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: x64-uwp
|
triplet: x64-uwp
|
||||||
jobName: x64_uwp
|
jobName: x64_uwp
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: arm64-windows
|
triplet: arm64-windows
|
||||||
jobName: arm64_windows
|
jobName: arm64_windows
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
- template: windows/azure-pipelines.yml
|
- template: windows/azure-pipelines.yml
|
||||||
parameters:
|
parameters:
|
||||||
triplet: arm-uwp
|
triplet: arm-uwp
|
||||||
jobName: arm_uwp
|
jobName: arm_uwp
|
||||||
|
poolName: $(windows-pool)
|
||||||
|
|
||||||
|
- template: macos/azure-pipelines.yml
|
||||||
|
70
scripts/azure-pipelines/macos/azure-pipelines.yml
Normal file
70
scripts/azure-pipelines/macos/azure-pipelines.yml
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
# Copyright (c) Microsoft Corporation.
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
#
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- job: x64_osx
|
||||||
|
pool:
|
||||||
|
name: vcpkgAgentPool
|
||||||
|
demands: Agent.OS -equals Darwin
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- bash: |
|
||||||
|
rm -rf installed || true
|
||||||
|
mkdir -p ~/Data/installed || true
|
||||||
|
ln -s ~/Data/installed
|
||||||
|
rm -rf ~/Data/installed/* || true
|
||||||
|
|
||||||
|
rm -rf buildtrees || true
|
||||||
|
mkdir -p ~/Data/buildtrees || true
|
||||||
|
ln -s ~/Data/buildtrees
|
||||||
|
rm -rf ~/Data/buildtrees/* || true
|
||||||
|
|
||||||
|
rm -rf packages || true
|
||||||
|
mkdir -p ~/Data/packages || true
|
||||||
|
ln -s ~/Data/packages
|
||||||
|
rm -rf ~/Data/packages/* || true
|
||||||
|
|
||||||
|
rm archives || rm -rf archives || true
|
||||||
|
ln -s ~/Data/archives
|
||||||
|
|
||||||
|
rm -rf downloads || true
|
||||||
|
mkdir -p ~/Data/downloads || true
|
||||||
|
ln -s ~/Data/downloads
|
||||||
|
|
||||||
|
if [ -d downloads/ ]; then
|
||||||
|
#delete downloaded files that have not been used in 7 days
|
||||||
|
find downloads/ -maxdepth 1 -type f ! -atime 7 -exec rm -f {} \;
|
||||||
|
fi
|
||||||
|
|
||||||
|
displayName: 'Setup Environment'
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
brew list autoconf || brew install autoconf
|
||||||
|
brew list automake || brew install automake
|
||||||
|
brew list libtool || brew install libtool
|
||||||
|
displayName: 'Install brew dependencies'
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
./bootstrap-vcpkg.sh -allowAppleClang
|
||||||
|
displayName: 'Build vcpkg'
|
||||||
|
|
||||||
|
- powershell: |
|
||||||
|
$skip_list = ./scripts/azure-pipelines/generate-skip-list.ps1 -Triplet "x64-osx" -BaselineFile "$(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt"
|
||||||
|
mkdir $(System.ArtifactsDirectory)/xml-results
|
||||||
|
./vcpkg ci x64-osx --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-osx.xml" --exclude=$skip_list --binarycaching
|
||||||
|
displayName: '** Test Modified Ports **'
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Analyze results and prepare test logs'
|
||||||
|
inputs:
|
||||||
|
failOnStderr: true
|
||||||
|
filePath: 'scripts/azure-pipelines/analyze-test-results.ps1'
|
||||||
|
arguments: '-baselineFile $(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt -logDir "$(System.ArtifactsDirectory)/xml-results" -outputDir "$(Build.ArtifactStagingDirectory)" -failurelogDir ~/Data/archives/fail -triplets "x64-osx" -errorOnRegression'
|
||||||
|
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
displayName: 'Publish Artifact: x64-osx port build failure logs'
|
||||||
|
inputs:
|
||||||
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failureLogs'
|
||||||
|
ArtifactName: 'Port build failure logs'
|
||||||
|
condition: failed()
|
@ -5,7 +5,7 @@
|
|||||||
jobs:
|
jobs:
|
||||||
- job: ${{ parameters.jobName }}
|
- job: ${{ parameters.jobName }}
|
||||||
pool:
|
pool:
|
||||||
name: PrWin-2020-04-22
|
name: ${{ parameters.poolName }}
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
triplet: '${{ parameters.triplet }}'
|
triplet: '${{ parameters.triplet }}'
|
||||||
@ -26,7 +26,7 @@ jobs:
|
|||||||
$(System.DefaultWorkingDirectory)\scripts\azure-pipelines\windows\ci-step.ps1 -Triplet "$(triplet)" -ExcludePorts $skipList
|
$(System.DefaultWorkingDirectory)\scripts\azure-pipelines\windows\ci-step.ps1 -Triplet "$(triplet)" -ExcludePorts $skipList
|
||||||
Write-Host "CI test script is complete"
|
Write-Host "CI test script is complete"
|
||||||
errorActionPreference: continue
|
errorActionPreference: continue
|
||||||
displayName: '** Build vcpkg and test ports **'
|
displayName: '** Build vcpkg and Test Modified Ports **'
|
||||||
|
|
||||||
- powershell: |
|
- powershell: |
|
||||||
$baseName = "$(triplet)"
|
$baseName = "$(triplet)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user