summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Liam2023-12-13 13:30:41 -0500
committerGravatar Liam2023-12-13 14:03:51 -0500
commit4a86a55174089fa19db34a52087780c99eaae07c (patch)
treea8ad763d7dbb2f84b315822fd113efb3d3cdac0f /.github/workflows
parentMerge pull request #12342 from FearlessTobi/fix-msvc (diff)
downloadyuzu-4a86a55174089fa19db34a52087780c99eaae07c.tar.gz
yuzu-4a86a55174089fa19db34a52087780c99eaae07c.tar.xz
yuzu-4a86a55174089fa19db34a52087780c99eaae07c.zip
ci: fix homebrew installation issue in actions runner images
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/verify.yml3
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:
79 fetch-depth: 0 79 fetch-depth: 0
80 - name: Install dependencies 80 - name: Install dependencies
81 run: | 81 run: |
82 brew install autoconf automake boost@1.83 ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd 82 # workaround for https://github.com/actions/setup-python/issues/577
83 brew install autoconf automake boost@1.83 ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@5 sdl2 speexdsp zlib zlib zstd || brew link --overwrite python@3.12
83 - name: Build 84 - name: Build
84 run: | 85 run: |
85 mkdir build 86 mkdir build