From 0e8082437401eccdef30737e739381d295530547 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 1 Oct 2024 14:33:27 -0500 Subject: [PATCH] ci: fix build-test job with --no-default-features, add miniscript/no-std Until rust-miniscript removes the no-std feature we need to enable it when --no-default-features is used to build bdk_wallet or the whole workspace. See also the check-no-std job which does the same plus enables the bdk_chain/hashbrown feature which is also needed to build bdk_wallet with --no-default-features but is already enabled when building the whole workspace. --- .github/workflows/cont_integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 76e2795e4..43b041d88 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -25,7 +25,7 @@ jobs: clippy: true - version: 1.63.0 # MSRV features: - - --no-default-features + - --no-default-features --features miniscript/no-std - --all-features steps: - name: checkout