From e7eafaf015c9fc0c722425cdd3341849978ac04d Mon Sep 17 00:00:00 2001 From: Eric Haag Date: Thu, 11 Jul 2024 11:49:53 -0500 Subject: [PATCH 1/2] Replace ubuntu-latest-4core with ubuntu-latest --- .github/workflows/run-experiments-apache-beam.yml | 7 +------ .github/workflows/run-experiments-spring-boot.yml | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/run-experiments-apache-beam.yml b/.github/workflows/run-experiments-apache-beam.yml index d3af433..8f28ff0 100644 --- a/.github/workflows/run-experiments-apache-beam.yml +++ b/.github/workflows/run-experiments-apache-beam.yml @@ -22,12 +22,7 @@ jobs: - experimentId: 2 - experimentId: 3 - runs-on: - # This `runs-on` configuration utilize larger GitHub Actions hosted runners. This build does not successfully - # complete on the default runners. - # Using this label incurs extra costs, so please do not copy/paste this configuration. - labels: ubuntu-latest-4core - group: gradle-enterprise-oss-projects + runs-on: ubuntu-latest steps: - name: Set up JDK 8 uses: actions/setup-java@v4 diff --git a/.github/workflows/run-experiments-spring-boot.yml b/.github/workflows/run-experiments-spring-boot.yml index 8044e69..03b9c3e 100644 --- a/.github/workflows/run-experiments-spring-boot.yml +++ b/.github/workflows/run-experiments-spring-boot.yml @@ -22,12 +22,7 @@ jobs: - experimentId: 2 - experimentId: 3 - runs-on: - # This `runs-on` configuration utilize larger GitHub Actions hosted runners. This build does not successfully - # complete on the default runners. - # Using this label incurs extra costs, so please do not copy/paste this configuration. - labels: ubuntu-latest-4core - group: gradle-enterprise-oss-projects + runs-on: ubuntu-latest steps: - name: Set up JDK 17 uses: actions/setup-java@v4 From 24c1a94c3838db431040f5d2199e09cadf011590 Mon Sep 17 00:00:00 2001 From: Eric Haag Date: Thu, 11 Jul 2024 12:50:54 -0500 Subject: [PATCH 2/2] Free up additional disk space --- .github/workflows/run-experiments-apache-beam.yml | 4 ++++ .github/workflows/run-experiments-spring-boot.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/run-experiments-apache-beam.yml b/.github/workflows/run-experiments-apache-beam.yml index 8f28ff0..36e5bce 100644 --- a/.github/workflows/run-experiments-apache-beam.yml +++ b/.github/workflows/run-experiments-apache-beam.yml @@ -24,6 +24,10 @@ jobs: runs-on: ubuntu-latest steps: + - name: Free disk space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + docker-images: false - name: Set up JDK 8 uses: actions/setup-java@v4 with: diff --git a/.github/workflows/run-experiments-spring-boot.yml b/.github/workflows/run-experiments-spring-boot.yml index 03b9c3e..7d210fe 100644 --- a/.github/workflows/run-experiments-spring-boot.yml +++ b/.github/workflows/run-experiments-spring-boot.yml @@ -24,6 +24,10 @@ jobs: runs-on: ubuntu-latest steps: + - name: Free disk space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + docker-images: false - name: Set up JDK 17 uses: actions/setup-java@v4 with: