mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
The scripts installing dependencies are now copied and executed before copying the full source tree. This allows to cache the dependency installation layers as long as these scripts remain unchanged. Previously, copying the entire repository invalidated the cache on every source change. While our CI intentionally doesn't preserve cached layers across independent runs, the changes in this patch help with local testing when investigating issues. Examples: - sudo -E make -C scripts/ci alpine GCC=1 - sudo -E make -C scripts/ci alpine CLANG=1 Suggested-by: Andrei Vagin <avagin@google.com> Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
12 lines
369 B
Text
12 lines
369 B
Text
FROM docker.io/library/eclipse-temurin:11-alpine
|
|
ARG CC=gcc
|
|
|
|
COPY contrib/dependencies/apk-packages.sh /criu/contrib/dependencies/apk-packages.sh
|
|
WORKDIR /criu
|
|
RUN apk add --no-cache maven "$CC" && /criu/contrib/dependencies/apk-packages.sh
|
|
|
|
COPY . /criu
|
|
|
|
RUN make mrproper && make -j $(nproc) CC="$CC"
|
|
|
|
ENTRYPOINT ["mvn", "-q", "-f", "test/javaTests/pom.xml", "test"]
|