From 084ebf348d4bf51b51ca58b5b7e8012cbd4adb6f Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Thu, 5 Dec 2024 12:24:18 +0100 Subject: [PATCH] ci: free disk space for interop tests (#3084) --- .github/workflows/interop-test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/interop-test.yml b/.github/workflows/interop-test.yml index e51c51cddd..1c5be0a5c4 100644 --- a/.github/workflows/interop-test.yml +++ b/.github/workflows/interop-test.yml @@ -1,4 +1,5 @@ name: Interoperability Testing + on: workflow_dispatch: pull_request: @@ -8,6 +9,7 @@ on: - 'internal/**' - 'p2p/**' - 'test-plans/**' + - '.github/workflows/interop-test.yml' push: branches: - "master" @@ -23,6 +25,11 @@ jobs: name: Run transport interoperability tests runs-on: ${{ fromJSON(vars['INTEROP_TEST_RUNNER_UBUNTU'] || '"ubuntu-22.04"') }} steps: + - name: Free Disk Space (Ubuntu) + if: vars['INTEROP_TEST_RUNNER_UBUNTU'] == '' + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 + with: + tool-cache: true - uses: actions/checkout@v4 - name: Build image run: docker build -t go-libp2p-head -f test-plans/PingDockerfile .