mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
CI: Install newer Bash via homebrew on macOS
The recently added generate-emoji-txt.sh script uses a Bash 4 substitution feature, causing CI to fail as macOS ships an ancient Bash 3.x. We'll want to use a more recent version anyway, so let's do that instead of updading the script to older syntax.
This commit is contained in:
parent
2161f20aa6
commit
ae264c9143
Notes:
sideshowbarker
2024-07-17 08:02:22 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/ae264c9143 Pull-request: https://github.com/SerenityOS/serenity/pull/14982
1 changed files with 2 additions and 1 deletions
|
@ -32,8 +32,9 @@ steps:
|
|||
displayName: 'Install Dependencies'
|
||||
|
||||
- ${{ if eq(parameters.os, 'macOS') }}:
|
||||
# macOS ships an ancient Bash 3.x by default
|
||||
- script: |
|
||||
brew install ninja wabt ccache unzip
|
||||
brew install bash ninja wabt ccache unzip
|
||||
displayName: 'Install Dependencies'
|
||||
|
||||
- ${{ if eq(parameters.os, 'Android') }}:
|
||||
|
|
Loading…
Reference in a new issue