fix(ci): disable install smoke Docker build cache

Co-authored-by: openclaw-clawsweeper[bot] <280122609+openclaw-clawsweeper[bot]@users.noreply.github.com>
This commit is contained in:
clawsweeper[bot]
2026-04-29 23:16:10 -07:00
committed by GitHub
parent 423f6df5b1
commit d55fafd130
2 changed files with 3 additions and 8 deletions

View File

@@ -211,8 +211,9 @@ describe("bun global install smoke", () => {
expect(workflow).toContain("timeout 45m docker buildx build");
expect(workflow).toContain("--progress=plain");
expect(workflow).toContain("--load");
expect(workflow).not.toContain("cache-from: type=gha,scope=openclaw-dockerfile-smoke");
expect(workflow).not.toContain("cache-to: type=gha,scope=openclaw-dockerfile-smoke");
expect(workflow).not.toContain("--cache-from");
expect(workflow).not.toContain("--cache-to");
expect(workflow).not.toContain("type=gha");
expect(workflow).toContain('OPENCLAW_INSTALL_SMOKE_SKIP_NPM_GLOBAL: "1"');
expect(releaseChecks).toContain("install_smoke_release_checks:");
expect(releaseChecks).toContain("uses: ./.github/workflows/install-smoke.yml");