From 3bcafb4b058f3981a68fd0706c44b7b04cbf0039 Mon Sep 17 00:00:00 2001 From: ismellike Date: Sun, 22 Sep 2024 22:31:22 -0500 Subject: [PATCH 1/3] Update test_tube.yml --- .github/workflows/test_tube.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test_tube.yml b/.github/workflows/test_tube.yml index 3b1a584cb..6eb569763 100644 --- a/.github/workflows/test_tube.yml +++ b/.github/workflows/test_tube.yml @@ -17,6 +17,17 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Install latest nightly toolchain uses: actions-rs/toolchain@v1 with: From cc5ff8597fc17d011298f8b0476e10dc7b851331 Mon Sep 17 00:00:00 2001 From: ismellike Date: Sun, 22 Sep 2024 22:35:48 -0500 Subject: [PATCH 2/3] Free up space in basic.yml and integration_tests.yml as well --- .github/workflows/basic.yml | 11 +++++++++++ .github/workflows/integration_tests.yml | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 56580ba10..44f55ab04 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -12,6 +12,17 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Install latest stable toolchain uses: actions-rs/toolchain@v1 with: diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 42af0ab81..b3ed0ff65 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -17,6 +17,17 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Install latest nightly toolchain uses: actions-rs/toolchain@v1 with: From 0d0068c081501a1dd8e63a3b4a45eb264de01f78 Mon Sep 17 00:00:00 2001 From: ismellike Date: Sun, 22 Sep 2024 23:20:18 -0500 Subject: [PATCH 3/3] Do not remove large-packages libclang.so is needed for osmosis-std --- .github/workflows/basic.yml | 2 +- .github/workflows/integration_tests.yml | 2 +- .github/workflows/test_tube.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 44f55ab04..362bac157 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -19,7 +19,7 @@ jobs: android: true dotnet: true haskell: true - large-packages: true + large-packages: false docker-images: true swap-storage: true diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index b3ed0ff65..1b1313e1d 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -24,7 +24,7 @@ jobs: android: true dotnet: true haskell: true - large-packages: true + large-packages: false docker-images: true swap-storage: true diff --git a/.github/workflows/test_tube.yml b/.github/workflows/test_tube.yml index 6eb569763..001908f12 100644 --- a/.github/workflows/test_tube.yml +++ b/.github/workflows/test_tube.yml @@ -24,7 +24,7 @@ jobs: android: true dotnet: true haskell: true - large-packages: true + large-packages: false docker-images: true swap-storage: true