-
Notifications
You must be signed in to change notification settings - Fork 312
Make build-wasm a dependency of agent-finish #22422
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -746,7 +746,7 @@ sbom: | |||||
|
|
||||||
| # Agent should run this task before finishing its turns | ||||||
| .PHONY: agent-finish | ||||||
| agent-finish: deps-dev fmt lint build test-all fix recompile dependabot generate-schema-docs generate-agent-factory security-scan | ||||||
| agent-finish: deps-dev fmt lint build build-wasm test-all fix recompile dependabot generate-schema-docs generate-agent-factory security-scan | ||||||
|
||||||
| agent-finish: deps-dev fmt lint build build-wasm test-all fix recompile dependabot generate-schema-docs generate-agent-factory security-scan | |
| agent-finish: deps-dev fmt lint build test-all fix recompile dependabot generate-schema-docs generate-agent-factory security-scan |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -148,11 +148,6 @@ | |
| "version": "v4.34.1", | ||
| "sha": "cb06a0a8527b2c6970741b3a0baa15231dc74a4c" | ||
| }, | ||
| "github/gh-aw-actions/setup@v0": { | ||
| "repo": "github/gh-aw-actions/setup", | ||
| "version": "v0", | ||
| "sha": "50f4fc16883c6c6672d8879affa8fd15d5cc79a4" | ||
| }, | ||
| "github/gh-aw-actions/setup@v0.62.5": { | ||
| "repo": "github/gh-aw-actions/setup", | ||
| "version": "v0.62.5", | ||
|
|
@@ -168,10 +163,10 @@ | |
| "version": "v2.10.3", | ||
| "sha": "9cd1b7bf3f36d5a3c3b17abc3545bfb5481912ea" | ||
| }, | ||
| "microsoft/apm-action@v1.3.4": { | ||
| "microsoft/apm-action@v1.4.0": { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| "repo": "microsoft/apm-action", | ||
| "version": "v1.3.4", | ||
| "sha": "83d54a6c7941049210433b16c8dfac573665b12a" | ||
| "version": "v1.4.0", | ||
| "sha": "cc84c04bc73e19e35527f1efa34ea003be9f037f" | ||
| }, | ||
| "oven-sh/setup-bun@v2.2.0": { | ||
| "repo": "oven-sh/setup-bun", | ||
|
|
||
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.
Good change: adding
build-wasmas a dependency ofagent-finishensures WASM compilation is validated as part of the standard finish sequence. This prevents the silent gap where golden files could drift out of sync.