Skip to content

Commit

Permalink
Ensure that the release pipelines dont hit disk full (#3812)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthchr authored Feb 22, 2024
1 parent 5a664e1 commit 37f8d37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/create-release-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/create-release-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 37f8d37

Please sign in to comment.