Skip to content

Commit eb38401

Browse files
author
Terraphim AI
committed
docs: clarify VM execution tests are Linux-only (Firecracker requirement)
Firecracker is a Linux-specific hypervisor and will not work on macOS/Windows. Added platform clarification to workflow header to document that: - VM execution tests require Linux - On macOS/Windows, these would only work inside a Linux VM - The experimental fcctl-web code is gitignored - Tests skip gracefully when experimental code is not present
1 parent 788072d commit eb38401

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/vm-execution-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: VM Execution Tests
22

3+
# NOTE: This workflow tests experimental VM execution features using Firecracker
4+
# Firecracker is Linux-only - these tests will not work on macOS/Windows
5+
# The scratchpad/firecracker-rust directory is gitignored (experimental code)
6+
# Tests will skip gracefully if the directory is not present
7+
38
on:
49
push:
510
branches: [ main, develop, agent_system ]
@@ -28,6 +33,11 @@ jobs:
2833
timeout-minutes: 15
2934

3035
steps:
36+
- name: Platform check
37+
run: |
38+
echo "⚠️ VM execution tests are Linux-only (Firecracker requirement)"
39+
echo "Running on: ubuntu-latest ✅"
40+
3141
- name: Checkout code
3242
uses: actions/checkout@v4
3343

0 commit comments

Comments
 (0)