Commit eecdd08 1 parent 6a14c76 commit eecdd08 Copy full SHA for eecdd08
File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,10 @@ jobs:
17
17
image : paritytech/ci-unified:bullseye-1.74.0
18
18
if : ${{ !contains(github.event.head_commit.message, '[ci-skip-rust]') }}
19
19
steps :
20
- - name : Maximize build space
21
- uses : easimon/maximize-build-space@master
22
- with :
23
- root-reserve-mb : 512
24
- swap-size-mb : 1024
25
- remove-dotnet : ' true'
26
- remove-android : ' true'
20
+ - name : Remove unnecessary files
21
+ run : |
22
+ sudo rm -rf /usr/share/dotnet
23
+ sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
27
24
- uses : actions/checkout@v4
28
25
- name : Run Clippy
29
26
run : SKIP_WASM_BUILD=1 cargo clippy --all-targets --all-features --locked --quiet
Original file line number Diff line number Diff line change 17
17
image : paritytech/ci-unified:bullseye-1.74.0
18
18
if : ${{ !contains(github.event.head_commit.message, '[ci-skip-rust]') }}
19
19
steps :
20
+ - name : Remove unnecessary files
21
+ run : |
22
+ sudo rm -rf /usr/share/dotnet
23
+ sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
20
24
- name : Maximize build space
21
25
uses : easimon/maximize-build-space@master
22
26
with :
You can’t perform that action at this time.
0 commit comments