Increase macOS Namespace cache volume
Some checks failed
Build Site / Next.js Build (push) Waiting to run
Build Apple / Build App (macOS) (push) Failing after 2m0s
Build Apple / Build App (iOS Simulator) (push) Failing after 14m55s
Build Rust / Cargo Test (push) Waiting to run

This commit is contained in:
Conrad Kramer 2026-03-19 02:07:41 -07:00
parent 2da0244d42
commit bf4b270db5
5 changed files with 4 additions and 4 deletions

Binary file not shown.

View file

@ -41,9 +41,9 @@ namespace:
size_gb: 40 size_gb: 40
macos_cache_path: "/Users/runner/.cache/burrow" macos_cache_path: "/Users/runner/.cache/burrow"
macos_cache_volumes: macos_cache_volumes:
- tag: "burrow-forgejo-macos-cache" - tag: "burrow-forgejo-macos-cache-v2"
mount_point: "/Users/runner/.cache/burrow" mount_point: "/Users/runner/.cache/burrow"
size_gb: 60 size_gb: 160
runner: runner:
name_prefix: "nscloud-" name_prefix: "nscloud-"

View file

@ -193,9 +193,9 @@ func (c *Config) Validate() error {
if len(c.Namespace.MacosCacheVolumes) == 0 { if len(c.Namespace.MacosCacheVolumes) == 0 {
c.Namespace.MacosCacheVolumes = []CacheVolumeConfig{ c.Namespace.MacosCacheVolumes = []CacheVolumeConfig{
{ {
Tag: "burrow-forgejo-macos-cache", Tag: "burrow-forgejo-macos-cache-v2",
MountPoint: c.Namespace.MacosCachePath, MountPoint: c.Namespace.MacosCachePath,
SizeGb: 60, SizeGb: 160,
}, },
} }
} }