From f20af22f03a17a78c0a852c5e86a1472b1543f07 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 5 Feb 2023 11:07:43 +0100 Subject: [PATCH] Fix wasm CI --- .github/workflows/wasm-build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wasm-build.yml b/.github/workflows/wasm-build.yml index d4716b703..7210255c5 100644 --- a/.github/workflows/wasm-build.yml +++ b/.github/workflows/wasm-build.yml @@ -24,7 +24,6 @@ jobs: os: [ubuntu-latest] arch: [x86_64] mode: [debug, release] - kind: [static] runs-on: ${{ matrix.os }} if: "!contains(github.event.head_commit.message, 'ci skip')" @@ -72,7 +71,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --plat=wasm --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --kind=${{ matrix.kind }} --ccache=n --fs_watcher=n --tests=n --unitybuild=y --yes + run: xmake config --plat=wasm --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --ccache=n --ffmpeg=n --shadernodes=n --tests=y --yes # Build the engine - name: Build Nazara @@ -80,7 +79,7 @@ jobs: # Setup installation configuration - name: Configure xmake for installation - run: xmake config --plat=wasm --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --ccache=n --ffmpeg=n --shadernodes=y --tests=y --yes + run: xmake config --plat=wasm --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --ccache=n --ffmpeg=n --shadernodes=n --tests=y --yes # Install the result files - name: Install Nazara