Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
fix(ci): remove remaining network and partition references
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Mar 2, 2024
1 parent 2c5a99b commit d84634b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
test:
name: test / (${{ matrix.partition }}/2)
name: test
env:
RUST_BACKTRACE: 1
timeout-minutes: 60
Expand All @@ -34,7 +34,6 @@ jobs:
cargo nextest run \
--locked \
--workspace \
--partition hash:${{ matrix.partition }}/2 \
-E 'kind(test)'
integration-success:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
test:
name: test / ${{ matrix.network }} (${{ matrix.partition }}/2)
name: test
env:
RUST_BACKTRACE: 1
timeout-minutes: 30
Expand All @@ -34,11 +34,10 @@ jobs:
cargo nextest run \
--locked \
--workspace \
--partition hash:${{ matrix.partition }}/2 \
-E "kind(lib) | kind(bin) | kind(proc-macro)"
doc:
name: doc tests (${{ matrix.network }})
name: doc tests
env:
RUST_BACKTRACE: 1
timeout-minutes: 30
Expand All @@ -56,7 +55,7 @@ jobs:
name: unit success
runs-on: ubuntu-latest
if: always()
needs: [test, state, doc]
needs: [test, doc]
timeout-minutes: 30
steps:
- name: Decide whether the needed jobs succeeded or failed
Expand Down

0 comments on commit d84634b

Please sign in to comment.