Skip to content

Commit

Permalink
ci: fix icu4c on macos and CIFuzz test
Browse files Browse the repository at this point in the history
  • Loading branch information
charlievieth committed Dec 8, 2024
1 parent ab13d63 commit 2d54995
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
GO: ${{ matrix.go }}
steps:
- if: startsWith(matrix.os, 'macos')
run: brew update
run: |
brew update
# Handle issues with the upgrade to icu4c v76.
[[ -e "$(brew --prefix)/opt/icu4c" ]] || \
brew reinstall icu4c
- uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit 2d54995

Please sign in to comment.