From 5eec091fc8b1509ea8d178466164b5b397df7353 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 25 Dec 2024 18:38:47 +0530 Subject: [PATCH] chore(actions): fix bad compile command Turns out I hallucinated `--exclude-features` into existence. --- .github/workflows/debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 05bf3bf..0cde7bf 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -43,7 +43,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Compile in debug mode - run: cargo build --bins --all-features --exclude-features version-management --target ${{ matrix.target }} --locked + run: cargo build --bins --no-default-features --features bin,patches,wally-compat --target ${{ matrix.target }} --locked - name: Upload artifact uses: actions/upload-artifact@v4 with: