From 58cbe9e634f4c0068b59345f872bf1d034f508bc Mon Sep 17 00:00:00 2001 From: Speykious Date: Wed, 25 Sep 2024 00:09:35 +0200 Subject: [PATCH] Remove WGPU steps from CI --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e127594..4021922 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,6 @@ jobs: matrix: renderer: - OpenGL - - WGPU config: - { name: Linux (x86), os: ubuntu-latest, target: "x86_64-unknown-linux-gnu" } - { name: Linux (ARM), os: ubuntu-latest, target: "aarch64-unknown-linux-gnu" } @@ -56,14 +55,6 @@ jobs: if: matrix.renderer == 'OpenGL' run: cargo build -p render-opengl --all-targets --target=${{ matrix.config.target }} - - name: Build Inox2D (WGPU) - if: matrix.renderer == 'WGPU' - run: cargo build -p inox2d-wgpu --all-targets --target=${{ matrix.config.target }} - - - name: Build Example (WGPU) - if: matrix.renderer == 'WGPU' - run: cargo build -p render-wgpu --all-targets --target=${{ matrix.config.target }} - build-webgl: name: Build WebGL Example runs-on: ubuntu-latest