Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/e2e-bronze-to-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ jobs:
# compose/docker-compose.cache.yml wires onto the build-only services.
- uses: docker/setup-buildx-action@v3

# Expose ACTIONS_RUNTIME_TOKEN / ACTIONS_CACHE_URL to run steps. The
# type=gha cache backend needs them; GitHub only hands them to JS
# actions, so `docker compose build` in a plain run step never sees
# them and buildx SILENTLY drops the cache_from/cache_to config —
# every run was a full Rust recompile.
- uses: crazy-max/ghaction-github-runtime@v3

# ─── Build the runner image ─────────────────────────────────────────
# The runner bakes in analytics + each connector's enrich binary, each
# compiled FROM ITS OWN Dockerfile via build-only services wired as
Expand Down
Loading