From 49d946fb5a9ace5faff149e057bfd883d415312a Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 27 Jan 2021 21:10:55 +0000 Subject: [PATCH] Remove wasm32-unknown-unknown from build checks By default `getrandom` 0.2 does not compile on unsupported targets; it is necessary to enable its `js` feature flag specifically when targeting `wasm32-unknown-unknown`. Since we don't expose that flag ourselves (instead relying on the downstream user to do this) we can't directly test this ourselves. `wasm32-wasi` is fully-supported, so we continue to test builds against that target to ensure we retain WASM compatibility. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ad90d53f..34739c5eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,6 @@ jobs: strategy: matrix: target: - - wasm32-unknown-unknown - wasm32-wasi steps: