From 5d35a74fb60efd5dee8d78089c2efa61c891e703 Mon Sep 17 00:00:00 2001 From: Doug <6060466+pixlwave@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:13:14 +0100 Subject: [PATCH] Switch UI tests back to the perf-only runner. (#3349) --- .github/workflows/ui_tests.yml | 5 +---- ci_scripts/free_space.sh | 15 --------------- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100755 ci_scripts/free_space.sh diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index 49c76e4e37..5fa202cb6f 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -13,7 +13,7 @@ on: jobs: tests: name: Tests - runs-on: macos-14 + runs-on: perf-only concurrency: # Only allow a single run of this workflow on each branch, automatically cancelling older runs. @@ -30,9 +30,6 @@ jobs: restore-keys: | ${{ runner.os }}-gems- - - name: Free disk space - run: ci_scripts/free_space.sh - - name: Setup environment run: source ci_scripts/ci_common.sh && setup_github_actions_environment diff --git a/ci_scripts/free_space.sh b/ci_scripts/free_space.sh deleted file mode 100755 index 18fdcc3351..0000000000 --- a/ci_scripts/free_space.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -# -# Taken from -# https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 -# - -set -ux - -df -h -sudo rm -rf /usr/share/dotnet -sudo rm -rf /opt/ghc -sudo rm -rf "/usr/local/share/boost" -sudo rm -rf "$AGENT_TOOLSDIRECTORY" -df -h