diff options
author | Liam <[email protected]> | 2023-12-13 13:30:41 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2023-12-13 14:03:51 -0500 |
commit | 4a86a55174089fa19db34a52087780c99eaae07c (patch) | |
tree | a8ad763d7dbb2f84b315822fd113efb3d3cdac0f /.github | |
parent | d590cfb9d05f4130c9ecf1686338cb5fa161fbda (diff) | |
download | yuzu-mainline-4a86a55174089fa19db34a52087780c99eaae07c.tar.gz yuzu-mainline-4a86a55174089fa19db34a52087780c99eaae07c.zip |
ci: fix homebrew installation issue in actions runner images
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/verify.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index ea1302b2f..c073f3f3f 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -79,7 +79,8 @@ jobs: fetch-depth: 0 - name: Install dependencies run: | - brew install autoconf automake [email protected] ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd + # workaround for https://github.com/actions/setup-python/issues/577 + brew install autoconf automake [email protected] ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd || brew link --overwrite [email protected] - name: Build run: | mkdir build |