From 59f14a03610fac2090287bb48e19336bdac5b2a3 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 12 Mar 2022 23:36:13 +0100 Subject: [PATCH] Don't use --all-features That will not work with nih_plug_iced. --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12c2500f..d179e1e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,9 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --workspace --all-features + # Don't use --all-features as that will enable a whole bunch of + # conflicting iced features + args: --workspace --features "simd" - name: Run the tests uses: actions-rs/cargo@v1 with: