about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-07-16 03:17:45 +0000
committerbors <bors@rust-lang.org>2025-07-16 03:17:45 +0000
commit231257f583c6e782da2e642ad007fca4e76779d6 (patch)
tree339ee82299bfde4b5576e00d5879817d58113a6c
parent3014e79f9c8d5510ea7b3a3b70d171d0948b1e96 (diff)
parent262d02e6fd1fd1b595f19ac33b4693e431c24832 (diff)
downloadrust-231257f583c6e782da2e642ad007fca4e76779d6.tar.gz
rust-231257f583c6e782da2e642ad007fca4e76779d6.zip
Auto merge of #144003 - ChrisDenton:ci4, r=ChrisDenton
Ensure home directory exists

This works around a missing mingw home directory in CI.
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e92afc14c20..dc8ac539a3a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -182,6 +182,11 @@ jobs:
       - name: install MinGW
         run: src/ci/scripts/install-mingw.sh
 
+      # Workaround for spurious ci failures after mingw install
+      # see https://rust-lang.zulipchat.com/#narrow/channel/242791-t-infra/topic/Spurious.20bors.20CI.20failures/near/528915775
+      - name: ensure home dir exists
+        run: mkdir -p ~
+
       - name: install ninja
         run: src/ci/scripts/install-ninja.sh