Skip to content

Commit 9eacb99

Browse files
committed
Temporarily disable "ledger" feature and Ledger tests on CI
1 parent 7ca3fff commit 9eacb99

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ jobs:
3737
--default-toolchain $(python ./build-tools/cargo-info-extractor/extract.py --rust-version)
3838
3939
- name: Build
40-
run: cargo build --release --locked --features trezor,ledger
40+
run: cargo build --release --locked --features trezor
4141

4242
- name: Run tests
43-
run: cargo test --release --workspace --features trezor,ledger
43+
run: cargo test --release --workspace --features trezor
4444

4545
- name: Run doc tests
46-
run: cargo test --release --doc --features trezor,ledger
46+
run: cargo test --release --doc --features trezor
4747

4848
# This test is ignored, so it needs to run separately.
4949
- name: Run mixed_sighash_types test
50-
run: cargo test --release mixed_sighash_types --features trezor,ledger
50+
run: cargo test --release mixed_sighash_types --features trezor
5151

5252
# This test is ignored, so it needs to run separately.
5353
- name: Run test_4opc_sequences test
@@ -89,17 +89,17 @@ jobs:
8989
--default-toolchain $(python ./build-tools/cargo-info-extractor/extract.py --rust-version)
9090
9191
- name: Build
92-
run: cargo build --release --locked --features trezor,ledger
92+
run: cargo build --release --locked --features trezor
9393

9494
- name: Run tests
95-
run: cargo test --release --workspace --features trezor,ledger
95+
run: cargo test --release --workspace --features trezor
9696

9797
- name: Run doc tests
98-
run: cargo test --release --doc --features trezor,ledger
98+
run: cargo test --release --doc --features trezor
9999

100100
# This test is ignored, so it needs to run separately.
101101
- name: Run mixed_sighash_types test
102-
run: cargo test --release mixed_sighash_types --features trezor,ledger
102+
run: cargo test --release mixed_sighash_types --features trezor
103103

104104
# This test is ignored, so it needs to run separately.
105105
- name: Run test_4opc_sequences test
@@ -133,17 +133,17 @@ jobs:
133133
--default-toolchain $(python ./build-tools/cargo-info-extractor/extract.py --rust-version)
134134
135135
- name: Build
136-
run: cargo build --release --locked --features trezor,ledger
136+
run: cargo build --release --locked --features trezor
137137

138138
- name: Run tests
139-
run: cargo test --release --workspace --features trezor,ledger
139+
run: cargo test --release --workspace --features trezor
140140

141141
- name: Run doc tests
142-
run: cargo test --release --doc --features trezor,ledger
142+
run: cargo test --release --doc --features trezor
143143

144144
# This test is ignored, so it needs to run separately.
145145
- name: Run mixed_sighash_types test
146-
run: cargo test --release mixed_sighash_types --features trezor,ledger
146+
run: cargo test --release mixed_sighash_types --features trezor
147147

148148
# This test is ignored, so it needs to run separately.
149149
- name: Run test_4opc_sequences test
@@ -293,6 +293,7 @@ jobs:
293293
294294
# Build Ledger-specific tests and archive them
295295
run_tests_on_ledger_preparation:
296+
if: false # Temporarily disabled for the v1.3.0 release
296297
runs-on: ubuntu-latest
297298
steps:
298299
- name: Checkout the core repository
@@ -338,6 +339,7 @@ jobs:
338339

339340
# Run Ledger-specific tests on an emulator
340341
run_tests_on_ledger:
342+
if: false # Temporarily disabled for the v1.3.0 release
341343
needs: run_tests_on_ledger_preparation
342344
runs-on: ubuntu-latest
343345
strategy:

0 commit comments

Comments
 (0)