criu/scripts/build/Dockerfile.fedora.tmpl
Radostin Stoyanov a72bf212ec scripts: improve layer caching of container builds
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>
2026-03-09 08:33:03 -07:00

16 lines
554 B
Cheetah

ARG CC=gcc
COPY contrib/dependencies/dnf-packages.sh /criu/contrib/dependencies/dnf-packages.sh
COPY scripts/ci/prepare-for-fedora-rawhide.sh /criu/scripts/ci/prepare-for-fedora-rawhide.sh
# prepare-for-fedora-rawhide.sh assumes we are in the criu directory
WORKDIR /criu
RUN dnf install -y "$CC" && /criu/scripts/ci/prepare-for-fedora-rawhide.sh
COPY . /criu
RUN make mrproper && date && make -j $(nproc) CC="$CC" && date
# The rpc test cases are running as user #1000, let's add the user
RUN adduser -u 1000 test
RUN make -C test/zdtm -j $(nproc)