-
Notifications
You must be signed in to change notification settings - Fork 62
ci: switch all runners off Blacksmith to standard GitHub-hosted runners #1838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
91e4fe9
ci: switch all runners off Blacksmith to standard GitHub-hosted runners
Dexploarer 80bb163
fix(.claude): hook should not block on shellcheck style nits or compo…
Dexploarer 9797790
chore: biome format fix for single-element array
Dexploarer 60f6c21
fix: get develop's tsc green — plugin shims, core/roles shim, source …
Dexploarer cfe8adf
fix: three more CI-visible tsc errors (edge-tts shim + gmail satisfies)
Dexploarer 86fa7b6
fix: regenerate bun.lock (CI-compatible) + 15 biome format fixes
Dexploarer b751603
fix(patch-deps): install @elizaos/core/roles runtime subpath shim
Dexploarer b280943
fix(vitest): alias @elizaos/core/roles to the committed shim fallback
Dexploarer f46f094
ci(benchmark): use setup-bun-workspace action for submodule + install
Dexploarer 6b690ea
ci: drop --frozen-lockfile from test/preload-smoke bun installs
Dexploarer 86bf3d9
ci: repoint openzeppelin-contracts submodule to a fetchable commit
Dexploarer 6a0367f
ci: bump release-electrobun + test-electrobun-release to Bun 1.3.11
Dexploarer 7970144
fix(vitest): declare @elizaos/core/roles alias in vitest.unit.config.ts
Dexploarer d3f1615
fix(vitest): alias @elizaos/core/roles in startup-e2e config too
Dexploarer a4e4ced
ci(flatpak): remove empty <screenshots/> tag to pass appstream-util
Dexploarer b52b07c
ci(flatpak): preserve npm/npx symlinks when copying Node.js
Dexploarer e1bf8bb
fix(ts): ambient @elizaos/core/roles shim in shared + plugin-selfcontrol
Dexploarer adf8c0c
ci(snap): initialize tracked workspace submodules before snapcraft
Dexploarer 3f8479e
fix(electrobun): guard Bun global in editor-bridge test for Node runtime
Dexploarer 766b83a
fix(release-check): bump required BUN_VERSION to 1.3.11
Dexploarer d0ae8b3
fix(ci): point benchmark workflow at packages/app-core/src/benchmark
Dexploarer 878e24e
fix(plugin-selfcontrol): inline permission types to avoid tsc rootDir…
Dexploarer eb5ea39
fix(ci): strip eliza/packages/* from workspaces when SKIP_LOCAL_UPSTR…
Dexploarer 6d6d494
fix(ci): rewrite @elizaos/core workspace:* to pinned registry version
Dexploarer 08bce5a
fix(agent): annotate gmailAction explicitly to avoid TS2742 in Docker…
Dexploarer 980223d
fix(ci): show full iOS xcodebuild output + grant flatpak-builder network
Dexploarer 139f5b3
fix(ci): strip workspace:* and @elizaos/core from root overrides
Dexploarer 31b6be4
fix(ci): iOS Swift 6 self capture, Flatpak icons dest, Snap workspace…
Dexploarer e0e5ccc
Revert "fix(ci): strip workspace:* and @elizaos/core from root overri…
Dexploarer 3c2cfca
chore(lint): port ensure-bundled-workspaces freshness check from develop
Dexploarer fda1be3
Merge branch 'develop' into chore/unblacksmith
Dexploarer cb94344
test(unit): unblock unit tests under SKIP_LOCAL_UPSTREAMS
Dexploarer d802984
fix: Hyperscape live telemetry + CI unblocker set
Dexploarer c4edc1e
fix(ci): stop trying to build the 12 extra workspace plugin submodules
Dexploarer ec6f80a
fix(release-check): sanitize workspace:* overrides around npm pack --…
Dexploarer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
-ignore 'shellcheck reported issue'suppresses all shellcheck-backed actionlint findings, not just style nits. That also hides real shell problems inrun:blocks (for example parse/expansion errors), so workflow scripts can pass this hook and only fail later when CI executes them. Narrow the ignore to specific non-blocking SC codes instead of filtering the entire shellcheck category.Useful? React with 👍 / 👎.