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:
Linus Groh 2022-08-23 11:20:35 +01:00
parent 2161f20aa6
commit ae264c9143
Notes: sideshowbarker 2024-07-17 08:02:22 +09:00

View file

@ -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') }}: