From 11dadb3d59b464749fce03e119848f06710d15bd Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Wed, 2 Oct 2024 14:47:29 +0200 Subject: [PATCH 1/3] Readd free disk space step to interop jobs. --- .github/workflows/interop.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index acd238f32c..896ce0b76d 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -17,6 +17,12 @@ jobs: name: Run transport interoperability tests runs-on: ubuntu-22.04 steps: + - name: Free Disk Space + # For some reason the original job (libp2p/test-plans) has enough disk space, but this one doesn't. + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: true + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v3 - name: Build image @@ -35,6 +41,12 @@ jobs: name: Run hole-punching interoperability tests runs-on: ubuntu-22.04 steps: + - name: Free Disk Space + # For some reason the original job (libp2p/test-plans) has enough disk space, but this one doesn't. + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: true + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v3 - name: Build image From 302a9b39e4479706986054ced03471f034698661 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Wed, 9 Oct 2024 19:01:54 +0200 Subject: [PATCH 2/3] Update comment. --- .github/workflows/interop.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index 896ce0b76d..14cd3251fd 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -18,7 +18,8 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Free Disk Space - # For some reason the original job (libp2p/test-plans) has enough disk space, but this one doesn't. + # For some reason we have space issues while running this action. Likely while building the image. + # This action will free up some space to avoid the issue. uses: jlumbroso/free-disk-space@v1.3.1 with: tool-cache: true @@ -42,7 +43,8 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Free Disk Space - # For some reason the original job (libp2p/test-plans) has enough disk space, but this one doesn't. + # For some reason we have space issues while running this action. Likely while building the image. + # This action will free up some space to avoid the issue. uses: jlumbroso/free-disk-space@v1.3.1 with: tool-cache: true From 939f03291dc0f7349413115c04721a8e28b5dfc0 Mon Sep 17 00:00:00 2001 From: Diego Date: Thu, 10 Oct 2024 10:15:53 +0200 Subject: [PATCH 3/3] remove unnecessary step --- .github/workflows/interop.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index 14cd3251fd..9393dca5df 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -42,13 +42,6 @@ jobs: name: Run hole-punching interoperability tests runs-on: ubuntu-22.04 steps: - - name: Free Disk Space - # For some reason we have space issues while running this action. Likely while building the image. - # This action will free up some space to avoid the issue. - uses: jlumbroso/free-disk-space@v1.3.1 - with: - tool-cache: true - - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v3 - name: Build image