Skip to content

Instantly share code, notes, and snippets.

View PhilBergman's full-sized avatar

Phil Bergman PhilBergman

View GitHub Profile
@PhilBergman
PhilBergman / nas-cache-fix-investigation.md
Created April 19, 2026 02:12
VibeEngine NAS dependency cache fix guide for Windows/macOS/Linux runners

NAS Dependency Cache — Runner Fix Guide

Problem Summary

CI run #115 showed that only Linux has working NAS dependency caching. Windows and macOS runners are rebuilding all dependencies from source every time.

Runner vcpkg Cache FetchContent Mirror Archive to NAS
✅ Linux (linux-runner-2) Working Working ❌ rsync missing
❌ Windows (ARCADE) Not working Not working Not working
@PhilBergman
PhilBergman / com.vibeengine.mount-nas.plist
Created April 18, 2026 15:27
LaunchAgent to auto-mount NAS on macOS CI runner login
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.vibeengine.mount-nas</string>
<key>ProgramArguments</key>
<array>
<string>/sbin/mount_smbfs</string>
<string>//ci-runner@mayday.lan/ci-artifacts</string>
@PhilBergman
PhilBergman / com.vibeengine.mount-metal-toolchain.plist
Created April 18, 2026 04:19
LaunchDaemon to auto-mount Metal Toolchain cryptex on macOS Tahoe (26.x)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.vibeengine.mount-metal-toolchain</string>
<key>ProgramArguments</key>
<array>
<string>/bin/bash</string>
<string>-c</string>
@PhilBergman
PhilBergman / BoxStart.txt
Last active November 25, 2023 04:16
Client Boxstarter
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Disable-InternetExplorerESC
cinst TelnetClient -source windowsFeatures
Enable-RemoteDesktop
cinst dropbox