Skip to content

Commit 9b87c7e

Browse files
Initialize glslang sources in build-ios.yml
Added step to initialize glslang SPIRV-Tools sources in the iOS build workflow.
1 parent 081ce69 commit 9b87c7e

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build-ios.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
- name: Install Ninja
2020
run: brew install ninja
2121

22+
- name: Init glslang SPIRV-Tools sources
23+
run: |
24+
cd 3rdparty/glslang
25+
python3 update_glslang_sources.py
26+
2227
- name: Configure CMake for iOS
2328
run: |
2429
cmake -S . -B build-ios \
@@ -33,7 +38,8 @@ jobs:
3338
-DMOBILEGL_BUILD_BENCHMARK=OFF \
3439
-DMOBILEGL_FORCE_RELEASE_OPT=ON \
3540
-DMOBILEGL_ENABLE_TRACY=OFF \
36-
-DBUILD_SHARED_LIBS=OFF
41+
-DBUILD_SHARED_LIBS=OFF \
42+
-DENABLE_OPT=OFF
3743
3844
- name: Build
3945
run: cmake --build build-ios --config Release --parallel

0 commit comments

Comments
 (0)