From 062ae15d0d514f8063e1e2f49aebe7c126ff34dd Mon Sep 17 00:00:00 2001 From: Andrei Neagu Date: Tue, 1 Oct 2024 09:43:24 +0200 Subject: [PATCH 1/3] free up space for docker builds --- .github/workflows/ci-testing-deploy.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-testing-deploy.yml b/.github/workflows/ci-testing-deploy.yml index 5c5ec32d9402..7379d2181b70 100644 --- a/.github/workflows/ci-testing-deploy.yml +++ b/.github/workflows/ci-testing-deploy.yml @@ -276,6 +276,18 @@ jobs: fail-fast: false name: "[build] docker images" steps: + - name: Remove unused software + run: | + echo "Available storage before:" + sudo df -h + echo + sudo rm -rf /usr/share/dotnet + sudo rm -rf /usr/local/lib/android + sudo rm -rf /opt/ghc + sudo rm -rf /opt/hostedtoolcache/CodeQL + echo "Available storage after:" + sudo df -h + echo - uses: actions/checkout@v4 - name: setup docker buildx id: buildx @@ -2485,7 +2497,6 @@ jobs: name: ${{ github.job }}_tracing path: tests/e2e-playwright/test-results - system-test-environment-setup: timeout-minutes: 30 # if this timeout gets too small, then split the tests name: "[sys] environment setup" From e829d1f0d51dffca617f2ed04b22757d70d1a828 Mon Sep 17 00:00:00 2001 From: Andrei Neagu Date: Tue, 1 Oct 2024 09:45:40 +0200 Subject: [PATCH 2/3] ensure image build triggers --- services/agent/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/services/agent/README.md b/services/agent/README.md index 4010642d4603..4fb410c0112e 100644 --- a/services/agent/README.md +++ b/services/agent/README.md @@ -17,6 +17,7 @@ Service for executing commands on docker nodes To develop this project, just + ```cmd make help From 7e6a05e0e547e26c7d3962fd1289d5a22e97a766 Mon Sep 17 00:00:00 2001 From: Andrei Neagu Date: Tue, 1 Oct 2024 10:05:25 +0200 Subject: [PATCH 3/3] revert --- services/agent/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/services/agent/README.md b/services/agent/README.md index 4fb410c0112e..4010642d4603 100644 --- a/services/agent/README.md +++ b/services/agent/README.md @@ -17,7 +17,6 @@ Service for executing commands on docker nodes To develop this project, just - ```cmd make help