fed6352b58
Lint shellcheck (arm64 pilot) / shellcheck-arm64 (pilot) (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 4s
CI / Python Lint & Test (pull_request) Successful in 5s
CI / Detect changes (pull_request) Successful in 8s
E2E API Smoke Test / detect-changes (pull_request) Successful in 7s
Check migration collisions / Migration version collision check (pull_request) Successful in 17s
E2E Chat / detect-changes (pull_request) Successful in 8s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (pull_request) Has been skipped
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 11s
E2E Staging SaaS (full lifecycle) / pr-validate (pull_request) Successful in 34s
E2E Staging SaaS (full lifecycle) / E2E Staging SaaS (pull_request) Has been skipped
Handlers Postgres Integration / detect-changes (pull_request) Successful in 6s
Harness Replays / detect-changes (pull_request) Successful in 4s
Lint forbidden tenant-env keys / Scan workspace_secrets writers for forbidden env keys (pull_request) Successful in 3s
Lint no tenant GITEA or GITHUB token write / Scan for repo-host token write into tenant workspace surface (pull_request) Successful in 4s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (local) (pull_request) Successful in 1m9s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 5s
gate-check-v3 / gate-check (pull_request) Successful in 10s
qa-review / approved (pull_request) Failing after 6s
sop-checklist / na-declarations (pull_request) N/A: (none)
security-review / approved (pull_request) Failing after 4s
sop-checklist / all-items-acked (pull_request) Successful in 3s
sop-checklist / review-refire (pull_request) Has been skipped
sop-tier-check / tier-check (pull_request) Successful in 5s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m8s
CI / Canvas (Next.js) (pull_request) Successful in 4s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 2s
E2E Chat / E2E Chat (pull_request) Successful in 9s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 4s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 1m34s
Harness Replays / Harness Replays (pull_request) Successful in 3s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 1m57s
CI / Canvas Deploy Reminder (pull_request) Has been skipped
E2E Staging External Runtime / E2E Staging External Runtime (pull_request) Successful in 5m15s
CI / Platform (Go) (pull_request) Failing after 4m41s
CI / all-required (pull_request) Failing after 6m29s
- Migration: add compute_instance_type (TEXT) and compute_volume_root_gb (INTEGER)
to workspaces table with IF NOT EXISTS guards.
- Models: ComputeConfig + ComputeVolume structs, ValidateComputeConfig with
bounds (instance_type max 64, root_gb 32–2048).
- Handler (Create): validate compute block, extract nullable overrides, pass
them into the INSERT (14 args now).
- Provisioner config: add InstanceType + VolumeRootGB to WorkspaceConfig.
- CP provisioner: include instance_type + volume_root_gb in cpProvisionRequest
JSON body with omitempty (nil = CP default).
- Tests:
• handler tests: updated all sqlmock INSERT WithArgs for 14 args,
added TestWorkspaceCreate_InvalidCompute and
TestWorkspaceCreate_WithComputeOverrides.
• workspace_provision_test: added TestBuildProvisionerConfig_ComputeOverrides
and TestBuildProvisionerConfig_ComputeNil.
• cp_provisioner_test: added TestStart_ComputeOverrides and
TestStart_ComputeOmittedWhenNil.
• models: new workspace_compute_test.go covering nil, empty, valid,
and boundary validation.
Backward-compatible: omitted compute block = nil columns = platform-managed
defaults (no change to existing behaviour).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>