ci: pass product name explicitly to shared build script
All checks were successful
check / check (push) Successful in 2m7s
All checks were successful
check / check (push) Successful in 2m7s
bread-ecosystem's ci/build.sh used to derive the image tag and cache volume name from basename(repo_root) — but every product's CI checks out into a directory literally named "src", so in real CI runs this resolved to "bread-ci:src" for every product, not "bread-ci:breadpad". Harmless while breadpad was the only consumer; would have silently collided (shared image tag, shared cargo-target cache) the moment a second product started using it. Fixed upstream, bumping the pin here to pick it up and passing "breadpad" explicitly.
This commit is contained in:
parent
c2807a59f0
commit
520245a6be
2 changed files with 2 additions and 2 deletions
|
|
@ -18,4 +18,4 @@ if [ ! -d "$CACHE_DIR" ]; then
|
|||
git -C "$CACHE_DIR" checkout --quiet "$REV"
|
||||
fi
|
||||
|
||||
bash "${CACHE_DIR}/ci/build.sh" "$ROOT" "$@"
|
||||
bash "${CACHE_DIR}/ci/build.sh" breadpad "$ROOT" "$@"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue