fix(ci): stabilize runners

main
Peter Steinberger 2025-12-13 20:04:33 +00:00
parent 6143338116
commit 5a1687484c
2 changed files with 14 additions and 1 deletions

View File

@ -14,6 +14,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js - name: Setup Node.js
if: matrix.runtime == 'node' if: matrix.runtime == 'node'
@ -26,7 +28,9 @@ jobs:
if: matrix.runtime == 'bun' if: matrix.runtime == 'bun'
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
with: with:
bun-version: "1.3.x" # bun.sh downloads currently fail with:
# "Failed to list releases from GitHub: 401" -> "Unexpected HTTP response: 400"
bun-download-url: "https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip"
- name: Setup Node.js (tooling for bun) - name: Setup Node.js (tooling for bun)
if: matrix.runtime == 'bun' if: matrix.runtime == 'bun'
@ -93,6 +97,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
submodules: recursive
- name: Select Xcode 26.1 - name: Select Xcode 26.1
run: | run: |

View File

@ -3,6 +3,10 @@ import { spawn } from "node:child_process";
const DEFAULT_LAUNCHD_LABEL = "com.steipete.clawdis"; const DEFAULT_LAUNCHD_LABEL = "com.steipete.clawdis";
export function triggerClawdisRestart(): void { export function triggerClawdisRestart(): void {
if (process.platform !== "darwin") {
return;
}
const label = process.env.CLAWDIS_LAUNCHD_LABEL || DEFAULT_LAUNCHD_LABEL; const label = process.env.CLAWDIS_LAUNCHD_LABEL || DEFAULT_LAUNCHD_LABEL;
const uid = const uid =
typeof process.getuid === "function" ? process.getuid() : undefined; typeof process.getuid === "function" ? process.getuid() : undefined;
@ -11,5 +15,8 @@ export function triggerClawdisRestart(): void {
detached: true, detached: true,
stdio: "ignore", stdio: "ignore",
}); });
child.on("error", () => {
// Best-effort restart; ignore failures (e.g. missing launchctl, invalid label).
});
child.unref(); child.unref();
} }