From 9ab90a2778866dfbdc48b9217e991e8e5238c4a7 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Mon, 23 Mar 2026 17:40:49 -0700 Subject: [PATCH] fix: override HOME=/home/runner in CI container options GH Actions always sets HOME=/github/home (a mounted host temp dir) regardless of Dockerfile USER. Bun uses HOME for temp/cache and can't write to the GH-mounted dir. Override HOME to the actual runner home. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/evals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/evals.yml b/.github/workflows/evals.yml index ebf08056..04d74013 100644 --- a/.github/workflows/evals.yml +++ b/.github/workflows/evals.yml @@ -62,7 +62,7 @@ jobs: credentials: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - options: --tmpfs /tmp:exec + options: --tmpfs /tmp:exec -e HOME=/home/runner timeout-minutes: 20 strategy: fail-fast: false