From 37f8d372168aa0da9d1376a2ddeb29949d106911 Mon Sep 17 00:00:00 2001 From: Matthew Christopher Date: Thu, 22 Feb 2024 12:21:38 -0800 Subject: [PATCH] Ensure that the release pipelines dont hit disk full (#3812) --- .github/workflows/create-release-experimental.yml | 3 +++ .github/workflows/create-release-official.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/create-release-experimental.yml b/.github/workflows/create-release-experimental.yml index b009ce06ab5..9c343b63cdd 100644 --- a/.github/workflows/create-release-experimental.yml +++ b/.github/workflows/create-release-experimental.yml @@ -28,6 +28,9 @@ jobs: fetch-depth: 0 # required to access tags submodules: "true" + - name: Force docker to SSD + run: sudo scripts/v2/linux-docker-use-ssd.sh --containerd true + - name: Build & run devcontainer image # this always builds a new image from scratch rather than from the build-devcontainer-image workflow output # so that we pick up the latest versions of everything diff --git a/.github/workflows/create-release-official.yml b/.github/workflows/create-release-official.yml index fa11b83c35e..cb97e08faac 100644 --- a/.github/workflows/create-release-official.yml +++ b/.github/workflows/create-release-official.yml @@ -21,6 +21,9 @@ jobs: fetch-depth: 0 # required to access tags submodules: "true" + - name: Force docker to SSD + run: sudo scripts/v2/linux-docker-use-ssd.sh --containerd true + - name: Build & run devcontainer image # this always builds a new image from scratch rather than from the build-devcontainer-image workflow output # so that we pick up the latest versions of everything