feat: add gVisor smoke tests for Claude, Codex, and build workloads#6136
Merged
Conversation
Add three new smoke test workflows that use the new sandbox.agent.runtime: gvisor frontmatter from gh-aw v0.82.8: - smoke-gvisor-claude.md: gVisor + Claude engine (haiku-4-5) - smoke-gvisor-codex.md: gVisor + Codex engine (gpt-5.4) - smoke-gvisor-build-test.md: gVisor + Node.js/Go build & test workloads Also update existing smoke-gvisor.md to use the compiler-managed gVisor install (sandbox.agent.runtime: gvisor) instead of the manual install step, since the compiler now handles gVisor installation automatically. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Contributor
✅ Coverage Check PassedOverall Coverage
📁 Per-file Coverage Changes (1 files)
Coverage comparison generated by |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds gVisor smoke-test coverage across Copilot, Claude, Codex, and build workloads.
Changes:
- Uses compiler-managed gVisor setup.
- Adds engine-specific and multi-ecosystem smoke workflows.
- Adds runtime, isolation, artifact, and token checks.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/smoke-gvisor.md |
Migrates existing smoke test to compiler-managed gVisor. |
.github/workflows/smoke-gvisor-codex.md |
Adds Codex gVisor smoke coverage. |
.github/workflows/smoke-gvisor-claude.md |
Adds Claude gVisor smoke coverage. |
.github/workflows/smoke-gvisor-build-test.md |
Adds Node.js and Go workload checks. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 5/8 changed files
- Comments generated: 22
- Review effort level: Medium
Comment on lines
+3
to
+4
| on: | ||
| workflow_dispatch: |
Comment on lines
+3
to
+4
| on: | ||
| workflow_dispatch: |
Comment on lines
+3
to
+4
| on: | ||
| workflow_dispatch: |
Comment on lines
+86
to
+87
| steps: | ||
| - name: Setup Go |
Comment on lines
+89
to
+92
| echo "::group::GitHub.com connectivity check" | ||
| HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" --max-time 10 https://github.com) | ||
| echo "github.com returned HTTP $HTTP_CODE" | ||
| echo "::endgroup::" |
Comment on lines
+33
to
+34
| add-labels: | ||
| allowed: [smoke-gvisor-claude] |
Comment on lines
+41
to
+42
| add-labels: | ||
| allowed: [smoke-gvisor-build] |
Comment on lines
+5
to
+8
| label_command: | ||
| name: test-gvisor-codex | ||
| events: [pull_request] | ||
| remove_label: false |
Comment on lines
+5
to
+8
| label_command: | ||
| name: test-gvisor-claude | ||
| events: [pull_request] | ||
| remove_label: false |
Comment on lines
+5
to
+8
| label_command: | ||
| name: test-gvisor-build | ||
| events: [pull_request] | ||
| remove_label: false |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds three new smoke test workflows that use the new
sandbox.agent.runtime: gvisorfrontmatter from gh-aw v0.82.8 to expand gVisor test coverage across engines and workload types.New Workflows
smoke-gvisor-claude.mdsmoke-gvisor-codex.mdsmoke-gvisor-build-test.mdnpm ci && npm run build, Jest tests, Go build & testChanges to Existing Workflow
smoke-gvisor.md: Updated to usesandbox.agent.runtime: gvisor+sudo: trueinstead of the manual gVisor install step. The compiler now handles gVisor installation automatically.Key Design Decisions
sandbox.agent.runtime: gvisorwithsudo: true(required per gh-aw/gh-aw#44796)label_commandtrigger (test-gvisor-claude,test-gvisor-codex,test-gvisor-build) for targeted testing/proc/versionand post-job artifact checksNext Steps
gh aw compile