Skip to content

Commit

Permalink
Run cargo clean with same toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
akonradi-signal authored Aug 14, 2024
1 parent 1c06569 commit f89e616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
- name: cargo clean (reclaim disk space)
# Clean the contents of the target directory to avoid running out of disk space during the
# doc build.
run: cargo clean
run: cargo +stable clean
if: matrix.version == 'stable'

- name: Rust docs
Expand All @@ -206,7 +206,7 @@ jobs:
- name: cargo clean (reclaim disk space)
# Clean the contents of the target directory to avoid running out of disk space during the
# following steps.
run: cargo clean
run: cargo +stable clean
if: matrix.version == 'stable'

- name: Check that the protocol fuzz target still builds
Expand Down

0 comments on commit f89e616

Please sign in to comment.