Skip to content

Commit 421b50b

Browse files
committed
v2.4.2: post-merge fixes copied from old zsa1-v2.4.2-fixes
This commit applies the cumulative post-merge fixes on top of `zsa1-v2.4.2-conflicts-new` by copying the file states from the tip of `zsa1-v2.4.2-fixes` (old stack), without re-resolving conflicts. Context: - Base: zsa1-v2.4.2-conflicts-new (upstream v2.4.2 import) - Source of fixes: zsa1-v2.4.2-fixes@<OLD_SHA> Contents (intent): - Conflict resolutions carried over from the old stack - Build and test follow-ups required after v2.4.2 import - No intentional behavior changes beyond integration fixes Notes: - This is a squash-style carryover to keep the new PR stack reviewable. - For provenance, see the original fixes branch at <OLD_SHA>. Refs: upstream v2.4.2, zsa1
1 parent 16741b9 commit 421b50b

File tree

62 files changed

+874
-6466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+874
-6466
lines changed

.github/workflows/ci-basic.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ jobs:
2525
- name: Install formatting & linting tools
2626
run: rustup component add rustfmt clippy
2727
- name: Run tests
28-
run: cargo test --verbose
28+
env:
29+
RUST_BACKTRACE: 1
30+
# Skip two tests that intermittently fail on CI (likely a race/ordering issue).
31+
# FIXME: investigate and fix the underlying flake; remove these skips once resolved.
32+
run: cargo test --locked --verbose -- --skip v4_with_sapling_spends --skip v5_with_sapling_spends
33+
# Run the skipped tests separately with constrained parallelism
34+
- name: Run Sapling spend tests
35+
run: |
36+
cargo test -p zebra-consensus v4_with_sapling_spends -- --nocapture
37+
cargo test -p zebra-consensus v5_with_sapling_spends -- --nocapture
2938
- name: Verify working directory is clean
3039
run: git diff --exit-code
3140
- name: Run doc check

0 commit comments

Comments
 (0)