mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +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
1 changed files with 2 additions and 1 deletions
|
@ -32,8 +32,9 @@ steps:
|
||||||
displayName: 'Install Dependencies'
|
displayName: 'Install Dependencies'
|
||||||
|
|
||||||
- ${{ if eq(parameters.os, 'macOS') }}:
|
- ${{ if eq(parameters.os, 'macOS') }}:
|
||||||
|
# macOS ships an ancient Bash 3.x by default
|
||||||
- script: |
|
- script: |
|
||||||
brew install ninja wabt ccache unzip
|
brew install bash ninja wabt ccache unzip
|
||||||
displayName: 'Install Dependencies'
|
displayName: 'Install Dependencies'
|
||||||
|
|
||||||
- ${{ if eq(parameters.os, 'Android') }}:
|
- ${{ if eq(parameters.os, 'Android') }}:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue