mirror of https://github.com/mattn/go-sqlite3.git
ci: fix icu4c on macos and CIFuzz test
This commit is contained in:
parent
82bc911e85
commit
41871ea755
|
@ -22,7 +22,7 @@ jobs:
|
||||||
dry-run: false
|
dry-run: false
|
||||||
sanitizer: ${{ matrix.sanitizer }}
|
sanitizer: ${{ matrix.sanitizer }}
|
||||||
- name: Upload Crash
|
- name: Upload Crash
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v4
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.sanitizer }}-artifacts
|
name: ${{ matrix.sanitizer }}-artifacts
|
||||||
|
|
|
@ -21,7 +21,11 @@ jobs:
|
||||||
GO: ${{ matrix.go }}
|
GO: ${{ matrix.go }}
|
||||||
steps:
|
steps:
|
||||||
- if: startsWith(matrix.os, 'macos')
|
- 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
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue