Skip to content

Commit 593da5e

Browse files
committed
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
1 parent c73fa37 commit 593da5e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,17 @@ jobs:
239239
- name: "Install system dependencies"
240240
run: |
241241
brew update
242-
brew install llvm@15 ninja nasm molten-vk automake libtool
242+
brew install llvm@15 ninja nasm automake libtool
243+
brew install cmake python3 ninja
244+
245+
- name: "Build and install molten-vk"
246+
run: |
247+
git clone https://github.com/KhronosGroup/MoltenVK.git
248+
cd MoltenVK
249+
git checkout bf097edc74ec3b6dfafdcd5a38d3ce14b11952d6
250+
./fetchDependencies --macos
251+
make macos
252+
make install
243253
244254
- name: "Setup cmake"
245255
uses: jwlawson/actions-setup-cmake@v2

0 commit comments

Comments
 (0)