Commit 8ef6edc
Add build step and timeout updates to smoke workflows (#11968)
* Initial plan
* Add build and test tasks to all smoke workflows
- Add 'make build' and 'make test' task to smoke-copilot.md
- Add 'make build' and 'make test' task to smoke-codex.md
- Add 'make test' task to smoke-claude.md (already has build test)
- Add 'make build' and 'make test' task to smoke-opencode.md
- Recompile all workflows to update .lock.yml files
- Minimal changes following update-agentic-workflow.md guidelines
- No UI changes
CI note: lint-go failure in run 21378132566 is unrelated (unused funcs in add_command.go and add_interactive.go)
* Add changeset [skip-ci]
* Merge main and regenerate workflows
* Regenerate workflows after merge with main
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add changeset [skip-ci]
* chore: increase smoke workflow timeouts and remove make test
- Increase timeout from 5/10 minutes to 15 minutes for all smoke workflows
- Remove 'make test' from smoke test steps, keeping only 'make build'
- Affects: smoke-copilot, smoke-codex, smoke-claude, smoke-opencode
- All workflows already have 'go' runtime configured (no changes needed)
* Add runtimes: go to smoke-opencode workflow
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add changeset [skip-ci]
* Recompile workflows after merging origin/main
Updates lock files for security-alert-burndown and security-guard workflows
to incorporate environment variable mirroring changes from main branch.
Changes:
- Add GH_AW_TOOL_BINS environment variable construction
- Pass additional runner environment variables (ANDROID_*, CARGO_HOME, etc.)
- Update PATH construction to use GH_AW_TOOL_BINS
Related to env-mirror feature from origin/main.
* Update artifact usage counts for security-guard workflow
* Add changeset [skip-ci]
* Fix shell escaping for environment variable expansion in AWF
Pre-wrap environment variable values in double quotes so they're
properly expanded inside AWF containers. This fixes the PATH priority
mechanism for tools from actions/setup-*.
Changes:
- env_mirror.go: Wrap mirrored env vars in double quotes
- engine_helpers.go: Wrap GH_AW_TOOL_BINS in double quotes
- Updated tests to expect the new format
- Regenerated all lock files
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Regenerate lock files after merge
* Add changeset [skip-ci]
* docs: Clarify engine selection in Quick Start guide (#12135)
* Use go env GOROOT instead of GOROOT env var for Go bin path
actions/setup-go doesn't export GOROOT as an environment variable
(only adds Go to PATH). This caused GH_AW_TOOL_BINS to not include
the Go bin path, resulting in older Go versions from hostedtoolcache
being used due to alphabetical find ordering.
Fix: Use `command -v go && $(go env GOROOT)/bin` to dynamically
determine GOROOT from the Go toolchain itself.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add changeset [skip-ci]
* Merge main and regenerate agentic workflows
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Fix Go build cache permission error in AWF sandbox
Add $HOME/.cache mount to AWF container configuration for all engines
(Claude, Codex, Copilot). This allows Go's build cache and other tool
caches (npm, etc.) to be writable inside the sandbox container.
The directory is created with `mkdir -p "$HOME/.cache"` before AWF runs
to ensure the mount path exists on the host.
Also added /home/runner/.cache to the SRT sandbox's default AllowWrite
list for consistency.
Fixes permission denied errors when running `make build` inside the
agent container (e.g., smoke-codex workflow).
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add changeset [skip-ci]
* Use --dangerously-bypass-approvals-and-sandbox for Codex engine
Replace --full-auto and --sandbox danger-full-access flags with the
single --dangerously-bypass-approvals-and-sandbox flag which combines
both behaviors. This simplifies the command and is the recommended
approach for externally sandboxed environments like AWF.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add changeset [skip-ci]
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Jiaxiao Zhou <duibao55328@gmail.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>1 parent 1fdf4a4 commit 8ef6edc
162 files changed
Lines changed: 547 additions & 335 deletions
File tree
- .changeset
- .github
- aw
- workflows
- pkg
- cli/templates
- workflow
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
| 120 | + | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments