Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable udeps job #659

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 30 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,35 +216,35 @@ jobs:
command: clippy
args: --workspace -- -D warnings -D rust-2021-compatibility -W unreachable-pub

udeps:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- uses: abbbi/github-actions-tune@v1
- uses: actions/cache@v2
with:
key: ${{ env.CACHE_KEY }}-${{ hashFiles('**/Cargo.toml') }}
path: |
~/.cargo/bin/
~/.cargo/git/db/
~/.cargo/registry/cache/
~/.cargo/registry/index/
target/
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- uses: actions-rs/[email protected]
with:
crate: cargo-udeps
version: latest
- uses: actions-rs/cargo@v1
with:
command: udeps
args: --workspace
# udeps:
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
# runs-on: ubuntu-latest
# needs: test
# steps:
# - uses: actions/checkout@v3
# - uses: abbbi/github-actions-tune@v1
# - uses: actions/cache@v2
# with:
# key: ${{ env.CACHE_KEY }}-${{ hashFiles('**/Cargo.toml') }}
# path: |
# ~/.cargo/bin/
# ~/.cargo/git/db/
# ~/.cargo/registry/cache/
# ~/.cargo/registry/index/
# target/
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: nightly
# override: true
# - uses: actions-rs/[email protected]
# with:
# crate: cargo-udeps
# version: latest
# - uses: actions-rs/cargo@v1
# with:
# command: udeps
# args: --workspace

audit:
if: ${{ github.ref == 'refs/heads/main' }}
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
- fuzz
- miri
- test
- udeps
# - udeps
- upgrades
runs-on: ubuntu-latest
steps:
Expand Down
Loading