From: Steve Myers Date: Tue, 1 Oct 2024 19:33:27 +0000 (-0500) Subject: ci: fix build-test job with --no-default-features, add miniscript/no-std X-Git-Tag: v1.0.0-beta.5~2^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.EncoderStringWriter.html?a=commitdiff_plain;h=0e8082437401eccdef30737e739381d295530547;p=bdk 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. --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 76e2795e..43b041d8 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