summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2023-02-24 00:16:02 -0700
committerAndrew Kaster <andrewdkaster@gmail.com>2023-02-24 02:39:26 -0700
commit35b07048ef8e8d82a935cfc69da72831c7f65a92 (patch)
treec45c0da7612ad499dda44b2c96976ffdc4e8f9c7
parent1b24fa582983d1ec8208bd731fa9ff6c9c027fb8 (diff)
downloadserenity-35b07048ef8e8d82a935cfc69da72831c7f65a92.zip
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.
-rw-r--r--Meta/Azure/Setup.yml1
1 files changed, 1 insertions, 0 deletions
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'