You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(workflow): simplify chroot smoke test prompt
Reduce the prompt to just verify language runtimes exist and print versions.
The agent doesn't need to know it's running inside awf/chroot - if the
runtimes work, the feature works.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .github/workflows/smoke-chroot.md
+4-89Lines changed: 4 additions & 89 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,25 +46,11 @@ safe-outputs:
46
46
timeout-minutes: 20
47
47
---
48
48
49
-
# Smoke Test: Chroot Feature Validation
49
+
# Verify Language Runtimes
50
50
51
-
**IMPORTANT: You are running inside awf with `--enable-chroot` enabled. Host binaries are available at their standard paths. Run commands directly - do NOT use `sudo awf` or any wrapper.**
51
+
Check that common language runtimes are installed and print their versions.
52
52
53
-
## Context
54
-
55
-
The `--enable-chroot` feature allows you to transparently access host binaries (Python, Node, Go, Java, .NET) at their standard paths. You can run these directly without any special commands.
56
-
57
-
The expected host versions are set up by the workflow:
58
-
- Python: 3.12.x
59
-
- Node.js: 24.x.x
60
-
- Go: 1.23.x
61
-
- Java: 21.x.x (Temurin)
62
-
- .NET: 8.x.x
63
-
64
-
## Test Tasks
65
-
66
-
### 1. Language Runtime Version Tests
67
-
Run each runtime and capture its version. These should match the host versions above.
53
+
Run these commands and report the results:
68
54
69
55
```bash
70
56
python3 --version
@@ -74,75 +60,4 @@ java --version 2>&1 | head -1
74
60
dotnet --version
75
61
```
76
62
77
-
### 2. Standard Library Tests
78
-
Verify each runtime can access its standard libraries:
0 commit comments