Skip to content

Commit e048247

Browse files
committed
fix(ci): remove usage of bitcoin/no-std feature
1 parent fd5a73a commit e048247

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cont_integration.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ jobs:
5757
- name: Check bdk_chain
5858
working-directory: ./crates/chain
5959
# TODO "--target thumbv6m-none-eabi" should work but currently does not
60-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,hashbrown
60+
run: cargo check --no-default-features --features miniscript/no-std,hashbrown
6161
- name: Check bdk wallet
6262
working-directory: ./crates/wallet
6363
# TODO "--target thumbv6m-none-eabi" should work but currently does not
64-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
64+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
6565
- name: Check esplora
6666
working-directory: ./crates/esplora
6767
# TODO "--target thumbv6m-none-eabi" should work but currently does not
68-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
68+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
6969

7070
check-wasm:
7171
name: Check WASM
@@ -91,10 +91,10 @@ jobs:
9191
uses: Swatinem/[email protected]
9292
- name: Check bdk wallet
9393
working-directory: ./crates/wallet
94-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
94+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
9595
- name: Check esplora
9696
working-directory: ./crates/esplora
97-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,async
97+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,async
9898

9999
fmt:
100100
name: Rust fmt

0 commit comments

Comments
 (0)