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