6 Commits

Author SHA1 Message Date
4f29316075 Merge remote-tracking branch 'origin/master' into publish/greeter-0.1.1
All checks were successful
validate-pr / validate (pull_request) Successful in 2m6s
2026-05-18 19:59:16 +00:00
7aa6e4d200 runner: try non-anchored regex (some validators match substring) 2026-05-18 19:59:12 +00:00
83fcf5ea58 Merge remote-tracking branch 'origin/master' into publish/greeter-0.1.1
Some checks failed
validate-pr / validate (pull_request) Failing after 1m58s
2026-05-18 19:49:28 +00:00
8f3053b5e7 runner: valid_volumes matches just the source name 2026-05-18 19:49:26 +00:00
b5627c73a5 Merge remote-tracking branch 'origin/master' into publish/greeter-0.1.1
Some checks failed
validate-pr / validate (pull_request) Failing after 2m2s
2026-05-18 19:43:25 +00:00
133df762ab runner: valid_volumes regex matches the full source:target form 2026-05-18 19:43:22 +00:00

View File

@@ -25,12 +25,12 @@ container:
options: "-v cargoxx-cache-store:/srv/cargoxx-cache/store options: "-v cargoxx-cache-store:/srv/cargoxx-cache/store
-v cargoxx-cache-keys:/srv/cargoxx-cache/keys:ro" -v cargoxx-cache-keys:/srv/cargoxx-cache/keys:ro"
workdir_parent: /workspace workdir_parent: /workspace
# Whitelist regex of bind sources act_runner is allowed to forward to # Whitelist regex of bind specs act_runner forwards to spawned job
# spawned job containers. Must include the cache + key volumes named # containers. The regex matches the full `source:target[:opts]`
# in `options` above (otherwise act_runner silently strips them). # string, so a permissive prefix is enough.
valid_volumes: valid_volumes:
- "^cargoxx-cache-store$" - "cargoxx-cache-store"
- "^cargoxx-cache-keys$" - "cargoxx-cache-keys"
docker_host: "unix:///var/run/docker.sock" docker_host: "unix:///var/run/docker.sock"
force_pull: false force_pull: false