Skip to content

Commit

Permalink
Merge branch 'main' into backport-account-uuid-migration-bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Dec 10, 2024
2 parents d9e74a5 + cffe509 commit 8188436
Show file tree
Hide file tree
Showing 81 changed files with 7,287 additions and 396 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
with:
command: check licenses

required-checks:
name: Required status checks have passed
required-audits:
name: Required audits have passed
needs:
- cargo-vet
- cargo-deny
Expand Down
120 changes: 102 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,70 @@ on:
merge_group:

jobs:
test:
name: >
Test${{
matrix.state != 'NOT_A_PUZZLE' && format(' {0}', matrix.state) || ''
}} on ${{ matrix.target }}
required-test:
name: Test ${{ matrix.state }} on ${{ matrix.target }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.state != 'NOT_A_PUZZLE' }}
strategy:
matrix:
target:
- Linux
- macOS
- Windows
state:
- NOT_A_PUZZLE
- no-Orchard
- Orchard
- NU7

include:
- target: Linux
os: ubuntu-latest-8cores

- state: Orchard
extra_flags: orchard
- state: NU7
extra_flags: orchard
rustflags: '--cfg zcash_unstable="nu7"'

env:
RUSTFLAGS: ${{ matrix.rustflags }}
RUSTDOCFLAGS: ${{ matrix.rustflags }}

steps:
- uses: actions/checkout@v4
- id: prepare
uses: ./.github/actions/prepare
with:
extra-features: ${{ matrix.extra_flags || '' }}
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-msrv-${{ hashFiles('**/Cargo.lock') }}
- name: Run tests
run: >
cargo test
--workspace
${{ steps.prepare.outputs.feature-flags }}
- name: Verify working directory is clean
run: git diff --exit-code

test:
name: Test ${{ matrix.state }} on ${{ matrix.target }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
target:
- macOS
- Windows
state:
- no-Orchard
- Orchard
- NU7

include:
- target: macOS
os: macOS-latest
- target: Windows
Expand All @@ -36,6 +79,7 @@ jobs:
- state: Orchard
extra_flags: orchard
- state: NU7
extra_flags: orchard
rustflags: '--cfg zcash_unstable="nu7"'

exclude:
Expand All @@ -51,7 +95,7 @@ jobs:
- id: prepare
uses: ./.github/actions/prepare
with:
extra-features: ${{ matrix.state != 'NOT_A_PUZZLE' && matrix.extra_flags || '' }}
extra-features: ${{ matrix.extra_flags || '' }}
- uses: actions/cache@v4
with:
path: |
Expand All @@ -66,6 +110,50 @@ jobs:
cargo test
--workspace
${{ steps.prepare.outputs.feature-flags }}
- name: Verify working directory is clean
run: git diff --exit-code

test-slow:
name: Slow Test ${{ matrix.state }} on ${{ matrix.target }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
target:
- Linux
state:
- Orchard
- NU7

include:
- target: Linux
os: ubuntu-latest-8cores

- state: Orchard
extra_flags: orchard
- state: NU7
extra_flags: orchard
rustflags: '--cfg zcash_unstable="nu7"'

env:
RUSTFLAGS: ${{ matrix.rustflags }}
RUSTDOCFLAGS: ${{ matrix.rustflags }}

steps:
- uses: actions/checkout@v4
- id: prepare
uses: ./.github/actions/prepare
with:
extra-features: ${{ matrix.extra_flags || '' }}
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-msrv-${{ hashFiles('**/Cargo.lock') }}
- name: Run slow tests
run: >
cargo test
Expand All @@ -78,12 +166,8 @@ jobs:

# States that we want to ensure can be built, but that we don't actively run tests for.
check-msrv:
name: >
Check${{
matrix.state != 'NOT_A_PUZZLE' && format(' {0}', matrix.state) || ''
}} build on ${{ matrix.target }}
name: Check ${{ matrix.state }} build on ${{ matrix.target }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.state != 'NOT_A_PUZZLE' }}
strategy:
matrix:
target:
Expand Down Expand Up @@ -113,7 +197,7 @@ jobs:
- id: prepare
uses: ./.github/actions/prepare
with:
extra-features: ${{ matrix.state != 'NOT_A_PUZZLE' && matrix.extra_flags || '' }}
extra-features: ${{ matrix.extra_flags || '' }}
- uses: actions/cache@v4
with:
path: |
Expand Down Expand Up @@ -283,7 +367,7 @@ jobs:
--timeout 600
--out xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.6.0
uses: codecov/codecov-action@v5.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down Expand Up @@ -368,7 +452,7 @@ jobs:
required-checks:
name: Required status checks have passed
needs:
- test
- required-test
- check-msrv
- build-latest
- build-nodefault
Expand Down
Loading

0 comments on commit 8188436

Please sign in to comment.