Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ concurrency:

jobs:
ci:
runs-on: ubuntu-latest
# Aggressive mbrother rollout: migrated to local beefy Podman self-hosted runner (logan-laptop)
# Replaces ubuntu-latest for the full CI matrix (multi-package installs, typecheck, lint, tests, builds).
# This repo uses master branch. See CLAUDE.md for full architecture.
# Labels: self-hosted, linux, x64, podman, logan-laptop, beefy
# Fallback: temporarily set back to ubuntu-latest if the laptop runner is unavailable.
Comment on lines +28 to +32
runs-on: [self-hosted, linux, x64, podman, logan-laptop, beefy]
Comment on lines 27 to +33
Comment on lines +31 to +33
timeout-minutes: 15

steps:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ concurrency:

jobs:
publish:
runs-on: ubuntu-latest
# Aggressive mbrother rollout: migrated to local beefy Podman self-hosted runner (logan-laptop)
# Replaces ubuntu-latest for the release/publish job (VS Code Marketplace + Open VSX).
# Uses master branch + complex multi-package npm ci + builds (per CLAUDE.md).
# New labels + clear fallback comment.
runs-on: [self-hosted, linux, x64, podman, logan-laptop, beefy]
Comment on lines +19 to +23
Comment on lines +19 to +23
timeout-minutes: 15
permissions:
contents: write
Expand Down
Loading