diff options
author | Liam <[email protected]> | 2024-01-31 09:21:56 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2024-01-31 11:17:09 -0500 |
commit | 4dfe9dd0381610892a095f7c5c53405e200d3d21 (patch) | |
tree | bc4173188764e0558cdf7ff85d2ce2022e0fbc7d /.github | |
parent | ffe3984353135ccab79649b78c82e9fdf5e1c760 (diff) | |
download | yuzu-mainline-4dfe9dd0381610892a095f7c5c53405e200d3d21.tar.gz yuzu-mainline-4dfe9dd0381610892a095f7c5c53405e200d3d21.zip |
ci: bump mac to macos-14
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/verify.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 62eb69aeb..2814d3cdb 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -73,7 +73,7 @@ jobs: build-mac: name: 'test build (macos)' needs: format - runs-on: macos-13 + runs-on: macos-14 steps: - uses: actions/checkout@v3 with: @@ -87,7 +87,7 @@ jobs: run: | mkdir build cd build - export Qt5_DIR="/usr/local/opt/qt@5/lib/cmake" + export Qt5_DIR="$(brew --prefix qt@5)/lib/cmake" cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF ninja build-msvc: |