From 1f597f9816aec8574a95a9c61158a8b941cbb93a Mon Sep 17 00:00:00 2001 From: Firestar99 Date: Wed, 21 May 2025 12:27:01 +0200 Subject: [PATCH] try to fix android ci --- .github/workflows/ci.yaml | 2 +- examples/runners/wgpu/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e8cd7aa85c..e4baee9a67 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -111,7 +111,7 @@ jobs: echo "::endgroup::" echo "::group::Build WGPU example for Android" - cargo apk build -p example-runner-wgpu --lib --features use-installed-tools --no-default-features + cargo apk build -p example-runner-wgpu --lib --crate-type cdylib --features use-installed-tools --no-default-features echo "::endgroup::" # This just allows us to branch protect on this one job rather needing to change diff --git a/examples/runners/wgpu/Cargo.toml b/examples/runners/wgpu/Cargo.toml index b28d1d0d98..b55d58ddaf 100644 --- a/examples/runners/wgpu/Cargo.toml +++ b/examples/runners/wgpu/Cargo.toml @@ -7,9 +7,6 @@ edition.workspace = true license.workspace = true repository.workspace = true -[lib] -crate-type = ["lib", "cdylib"] - # See rustc_codegen_spirv/Cargo.toml for details on these features [features] default = ["use-compiled-tools"]