mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 09:09:18 +01:00
CI: Workaround for MoltenVK crash
1.2.10 and later crash during descriptor set creation. So for now let's stick with the older version
This commit is contained in:
parent
c73fa3761c
commit
593da5ed79
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -239,7 +239,17 @@ jobs:
|
|||||||
- name: "Install system dependencies"
|
- name: "Install system dependencies"
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
brew install llvm@15 ninja nasm molten-vk automake libtool
|
brew install llvm@15 ninja nasm automake libtool
|
||||||
|
brew install cmake python3 ninja
|
||||||
|
|
||||||
|
- name: "Build and install molten-vk"
|
||||||
|
run: |
|
||||||
|
git clone https://github.com/KhronosGroup/MoltenVK.git
|
||||||
|
cd MoltenVK
|
||||||
|
git checkout bf097edc74ec3b6dfafdcd5a38d3ce14b11952d6
|
||||||
|
./fetchDependencies --macos
|
||||||
|
make macos
|
||||||
|
make install
|
||||||
|
|
||||||
- name: "Setup cmake"
|
- name: "Setup cmake"
|
||||||
uses: jwlawson/actions-setup-cmake@v2
|
uses: jwlawson/actions-setup-cmake@v2
|
||||||
|
Loading…
Reference in New Issue
Block a user