diff --git a/.github/workflows/webgpu-test-linux.yml b/.github/workflows/webgpu-test-linux.yml index 412e786..c1b2967 100644 --- a/.github/workflows/webgpu-test-linux.yml +++ b/.github/workflows/webgpu-test-linux.yml @@ -71,7 +71,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --yes + run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} ${{ matrix.confs.config }} --ccache=n --yes # Save dependencies - name: Save cached xmake dependencies @@ -91,5 +91,4 @@ jobs: - name: Test WebGPU run: | - xmake build --yes WebGPUUnitTests - xmake run --yes WebGPUUnitTests + xmake run --yes WebGPUUnitTests -vD diff --git a/.github/workflows/webgpu-test-macos.yml b/.github/workflows/webgpu-test-macos.yml index 765b346..baf4960 100644 --- a/.github/workflows/webgpu-test-macos.yml +++ b/.github/workflows/webgpu-test-macos.yml @@ -62,7 +62,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --yes + run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} ${{ matrix.confs.config }} --ccache=n --yes # Save dependencies - name: Save cached xmake dependencies @@ -82,5 +82,4 @@ jobs: - name: Test WebGPU run: | - xmake build --yes WebGPUUnitTests - xmake run --yes WebGPUUnitTests + xmake run --yes WebGPUUnitTests -vD diff --git a/.github/workflows/webgpu-test-windows.yml b/.github/workflows/webgpu-test-windows.yml index ee67e55..b5b20f7 100644 --- a/.github/workflows/webgpu-test-windows.yml +++ b/.github/workflows/webgpu-test-windows.yml @@ -63,7 +63,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --yes + run: xmake config --webgpu=y --webgpu-tests=y --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} ${{ matrix.confs.config }} --ccache=n --yes # Save dependencies - name: Save cached xmake dependencies @@ -82,11 +82,5 @@ jobs: key: assets-${{ hashFiles('assets/examples_version.txt', 'assets/unittests_version.txt') }} - name: Test WebGPU - if: ${{ !runner.debug }} - run: | - xmake run --yes WebGPUUnitTests - - - name: Test WebGPU (debug) - if: ${{ runner.debug }} run: | xmake run --yes WebGPUUnitTests -vD