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
fix(wkg): enable network access for OCI registry operations in CI
Add execution_requirements to all OCI push/pull operations to allow
network access outside Bazel's sandbox. This fixes CI failures when
publishing to or pulling from OCI registries.
The issue was that Bazel's sandbox blocks network access by default
for hermetic builds, but OCI operations require network connectivity.
Adding execution_requirements with "local": "1" and "no-sandbox": "1"
allows these operations to run with network access.
Fixed operations:
- wasm_component_publish (push)
- wasm_component_from_oci (pull)
- wac_compose_with_oci (pull for composition)
0 commit comments