From a79aac102c856ede39134ce419cdc6432fd7d267 Mon Sep 17 00:00:00 2001 From: luncliff Date: Sat, 23 Nov 2024 17:16:08 +0900 Subject: [PATCH] azure: ignore homebrew execution error --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f859ac95..5f2dcb08 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -159,7 +159,8 @@ stages: vcpkg.default.triplet: "arm64-ios-simulator" vcpkg.overlay.triplets: "$(Build.SourcesDirectory)/triplets" steps: - - powershell: brew install $(Get-Content test/packages-homebrew.txt) + - script: brew install $(cat test/packages-homebrew.txt) + continueOnError: true displayName: "Install HomeBrew packages" - task: PowerShell@2 displayName: "Setup vcpkg"