mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-05 07:26:52 +00:00
Cache Rust build cache when building docker images (#14130)
This commit is contained in:
parent
c101fc6568
commit
6fee2f49f3
3 changed files with 5 additions and 1 deletions
1
changelog.d/14129.bugfix
Normal file
1
changelog.d/14129.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix pinning Rust dependencies in docker images.
|
1
changelog.d/14130.misc
Normal file
1
changelog.d/14130.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Cache Rust build cache when building docker images.
|
|
@ -135,7 +135,9 @@ ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE
|
|||
# Install the synapse package itself.
|
||||
# If we have populated requirements.txt, we don't install any dependencies
|
||||
# as we should already have those from the previous `pip install` step.
|
||||
RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
|
||||
RUN --mount=type=cache,target=/synapse/target,sharing=locked \
|
||||
--mount=type=cache,target=${CARGO_HOME}/registry,sharing=locked \
|
||||
if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
|
||||
pip install --prefix="/install" --no-deps --no-warn-script-location /synapse[all]; \
|
||||
else \
|
||||
pip install --prefix="/install" --no-warn-script-location /synapse[all]; \
|
||||
|
|
Loading…
Add table
Reference in a new issue