Activate Build 124 autonomous cycles

This commit is contained in:
Theodore Song
2026-08-22 20:38:28 -04:00
parent 3183612d13
commit 1ea235b0cf
3 changed files with 2 additions and 73 deletions
+1 -8
View File
@@ -5,7 +5,6 @@ import { ALLOWED_RUNTIME_KEYS, compactRuntimeTransportSnapshot, validateRuntimeS
const index = fs.readFileSync(new URL("../index.html", import.meta.url), "utf8");
const api = fs.readFileSync(new URL("../api/state.js", import.meta.url), "utf8");
const workflow = fs.readFileSync(new URL("../.github/workflows/autonomous-cycle.yml", import.meta.url), "utf8");
const releaseWorkflow = fs.readFileSync(new URL("../.github/workflows/release-build-124.yml", import.meta.url), "utf8");
const vercelConfig = JSON.parse(fs.readFileSync(new URL("../vercel.json", import.meta.url), "utf8"));
const runner = fs.readFileSync(new URL("./run-autonomous-cycle.mjs", import.meta.url), "utf8");
const resolutionAudit = JSON.parse(fs.readFileSync(new URL("../research/resolution-week-no-audit.json", import.meta.url), "utf8"));
@@ -72,18 +71,12 @@ assert.match(api, /Buffer\.from\(file\.content/);
assert.match(api, /searchParams\.set\("runtime", `\$\{Date\.now\(\)\}/);
assert.match(workflow, /cron: "2,7,12,17,22,27,32,37,42,47,52,57 \* \* \* \*"/);
assert.match(workflow, /contents: write/);
assert.match(workflow, /EXPECTED_BUILD: "118"/);
assert.match(workflow, /EXPECTED_BUILD: "124"/);
assert.match(workflow, /actions: write/);
assert.match(workflow, /cancel-in-progress: false/);
assert.match(workflow, /next=\$\(\( \(now \/ 300 \+ 1\) \* 300 \+ 15 \)\)/);
assert.match(workflow, /actions\/workflows\/autonomous-cycle\.yml\/dispatches/);
assert.match(workflow, /--data '\{"ref":"main"\}'/);
assert.match(releaseWorkflow, /name: Release Build 124 after Vercel quota reset/);
assert.match(releaseWorkflow, /cron: "15 1-23\/2 23 8 \*"/);
assert.match(releaseWorkflow, /cron: "15 1-13\/2 24 8 \*"/);
assert.match(releaseWorkflow, /grep -q 'const BUILD_VERSION = 124;'/);
assert.match(releaseWorkflow, /EXPECTED_BUILD: "124"/);
assert.doesNotMatch(releaseWorkflow, /Build 123|build_123|build-123/);
assert.match(index, /cloudRestartReconstructsOfflineCache:true/);
assert.match(index, /saveSuggestions\(sugs,markets\.length,analysisMarkets\.length,bundleAudit\)/);
assert.match(index, /const NEG_RISK_EVENT_SCAN_LIMIT=1000;/);