Skip to content

Commit eecdd08

Browse files
committed
ci-skip-integration-tests
1 parent 6a14c76 commit eecdd08

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/check-clippy-all-features.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@ jobs:
1717
image: paritytech/ci-unified:bullseye-1.74.0
1818
if: ${{ !contains(github.event.head_commit.message, '[ci-skip-rust]') }}
1919
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
2724
- uses: actions/checkout@v4
2825
- name: Run Clippy
2926
run: SKIP_WASM_BUILD=1 cargo clippy --all-targets --all-features --locked --quiet

.github/workflows/check-clippy.yml

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
image: paritytech/ci-unified:bullseye-1.74.0
1818
if: ${{ !contains(github.event.head_commit.message, '[ci-skip-rust]') }}
1919
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
2024
- name: Maximize build space
2125
uses: easimon/maximize-build-space@master
2226
with:

0 commit comments

Comments
 (0)