From d0b67d54393989cd30ee343a1380cbdd2a1b2fa5 Mon Sep 17 00:00:00 2001 From: Robert Konrad Date: Fri, 15 Mar 2024 12:34:27 +0100 Subject: [PATCH] [GitHub] Use Ninja for emscripten builds --- .github/workflows/emscripten-webgl.yml | 2 +- .github/workflows/emscripten-webgpu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/emscripten-webgl.yml b/.github/workflows/emscripten-webgl.yml index 6abbb1ec4..4ae94f218 100644 --- a/.github/workflows/emscripten-webgl.yml +++ b/.github/workflows/emscripten-webgl.yml @@ -24,4 +24,4 @@ jobs: - name: Compile (kmake) run: ./make emscripten --kinc . --from Tests/Empty - name: Compile (emscripten) - run: git clone https://github.com/emscripten-core/emsdk.git && cd emsdk && ./emsdk install latest && ./emsdk activate latest && source ./emsdk_env.sh && cd ../build/Release && make + run: git clone https://github.com/emscripten-core/emsdk.git && cd emsdk && ./emsdk install latest && ./emsdk activate latest && source ./emsdk_env.sh && cd ../build/Release && ninja diff --git a/.github/workflows/emscripten-webgpu.yml b/.github/workflows/emscripten-webgpu.yml index ba2b50ccc..ecd050b9d 100644 --- a/.github/workflows/emscripten-webgpu.yml +++ b/.github/workflows/emscripten-webgpu.yml @@ -24,4 +24,4 @@ jobs: - name: Compile (kmake) run: ./make emscripten -g webgpu --kinc . --from Tests/Empty - name: Compile (emscripten) - run: git clone https://github.com/emscripten-core/emsdk.git && cd emsdk && ./emsdk install latest && ./emsdk activate latest && source ./emsdk_env.sh && cd ../build/Release && make + run: git clone https://github.com/emscripten-core/emsdk.git && cd emsdk && ./emsdk install latest && ./emsdk activate latest && source ./emsdk_env.sh && cd ../build/Release && ninja