From 35b07048ef8e8d82a935cfc69da72831c7f65a92 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 24 Feb 2023 00:16:02 -0700 Subject: [PATCH] CI: Make sure to brew update in macOS Azure setup This picks up any upstream brew changes that haven't been pulled into the default Azure VMs. For example, the ffmpeg dependency of qt is currently broken in the 8 day old brew commit they are using. --- Meta/Azure/Setup.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Azure/Setup.yml b/Meta/Azure/Setup.yml index 66a274147c..ee59406f50 100644 --- a/Meta/Azure/Setup.yml +++ b/Meta/Azure/Setup.yml @@ -34,6 +34,7 @@ steps: - ${{ if eq(parameters.os, 'macOS') }}: # macOS ships an ancient Bash 3.x by default - script: | + brew update brew install bash ninja wabt ccache unzip qt llvm@15 displayName: 'Install Dependencies'