From 8d612887e95c06d2254b7b521c116d4903c52034 Mon Sep 17 00:00:00 2001 From: Philip Zeyliger Date: Mon, 2 Feb 2026 13:20:55 -0800 Subject: [PATCH] ci: use self-hosted runners for shelley-tests, push-to-main, and test-non-e1e Prompt: Skip the following as well. And also make test-non-e1e also run on the hosted runner. Make these changes in the top two commits --- claudetool/browse/browse_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/claudetool/browse/browse_test.go b/claudetool/browse/browse_test.go index 60af4107c351fbce5351f74a0b903ba9f18ea6e2..854e0cf5d07df52032c08452a08aab9a0879e4da 100644 --- a/claudetool/browse/browse_test.go +++ b/claudetool/browse/browse_test.go @@ -151,6 +151,11 @@ func TestNavigateTool(t *testing.T) { t.Skip("skipping navigate tool test in short mode") } + // Skip on ci.bold.dev where chromium snap doesn't work in cgroups + if hostname, _ := os.Hostname(); strings.Contains(hostname, "bold.dev") { + t.Skip("skipping browser test on ci.bold.dev") + } + // Create browser tools instance ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second) defer cancel()