Skip to content

Commit

Permalink
chore: bump dependencies and fix renaming issues (#1584)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh authored Apr 4, 2022
1 parent 9f48392 commit def85b3
Show file tree
Hide file tree
Showing 9 changed files with 83 additions and 92 deletions.
4 changes: 0 additions & 4 deletions .github/workflow-template/jobs/compute-node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ jobs:
run: |
cargo fmt --all -- --check
- name: Run rust doc check
run: |
cargo doc --document-private-items
- name: Build Rust components
run: |
cargo build --profile $[<profile>] --features=all-in-one
Expand Down
4 changes: 4 additions & 0 deletions .github/workflow-template/jobs/compute-node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
# If new CI checks are added, the one with `--locked` must be run first.
cargo clippy --all-targets --locked -- -D warnings
- name: Run rust doc check
run: |
cargo doc --document-private-items --no-deps
- name: Run rust test with coverage
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info --no-fail-fast
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,6 @@ jobs:
- name: Run rust format check
run: |
cargo fmt --all -- --check
- name: Run rust doc check
run: |
cargo doc --document-private-items
- name: Build Rust components
run: |
cargo build --profile dev --features=all-in-one
Expand Down Expand Up @@ -635,9 +632,6 @@ jobs:
- name: Run rust format check
run: |
cargo fmt --all -- --check
- name: Run rust doc check
run: |
cargo doc --document-private-items
- name: Build Rust components
run: |
cargo build --profile release --features=all-in-one
Expand Down Expand Up @@ -693,6 +687,9 @@ jobs:
run: |
# If new CI checks are added, the one with `--locked` must be run first.
cargo clippy --all-targets --locked -- -D warnings
- name: Run rust doc check
run: |
cargo doc --document-private-items --no-deps
- name: Run rust test with coverage
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info --no-fail-fast
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,6 @@ jobs:
- name: Run rust format check
run: |
cargo fmt --all -- --check
- name: Run rust doc check
run: |
cargo doc --document-private-items
- name: Build Rust components
run: |
cargo build --profile dev --features=all-in-one
Expand Down Expand Up @@ -476,6 +473,9 @@ jobs:
run: |
# If new CI checks are added, the one with `--locked` must be run first.
cargo clippy --all-targets --locked -- -D warnings
- name: Run rust doc check
run: |
cargo doc --document-private-items --no-deps
- name: Run rust test with coverage
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info --no-fail-fast
Expand Down
Loading

0 comments on commit def85b3

Please sign in to comment.