Skip to content

Commit 27f897b

Browse files
sbryngelsonclaude
andcommitted
Move build cache from scratch to coda1 project storage
Scratch quota was filling up and causing build failures. coda1 project storage has more space for persistent caches. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5c97194 commit 27f897b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/setup-build-cache.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Sets up a persistent build cache for self-hosted CI runners.
3-
# Creates a symlink: ./build -> <scratch>/.mfc-ci-cache/<key>/build
3+
# Creates a symlink: ./build -> /storage/coda1/d-coc/0/sbryngelson3/.mfc-ci-cache/<key>/build
44
#
55
# Each runner gets its own cache keyed by (cluster, device, interface, runner).
66
# This avoids cross-runner path issues entirely — CMake's absolute paths are
@@ -14,7 +14,7 @@ _cache_interface="${3:-none}"
1414
_cache_runner="${RUNNER_NAME:?RUNNER_NAME not set}"
1515

1616
_cache_key="${_cache_cluster}-${_cache_device}-${_cache_interface}-${_cache_runner}"
17-
_cache_base="$HOME/scratch/.mfc-ci-cache/${_cache_key}/build"
17+
_cache_base="/storage/coda1/d-coc/0/sbryngelson3/.mfc-ci-cache/${_cache_key}/build"
1818

1919
mkdir -p "$_cache_base"
2020
_cache_dir="$(cd "$_cache_base" && pwd -P)"

0 commit comments

Comments
 (0)