mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-31 06:15:24 +00:00
Let's see how rseq() C/R feature works
This reverts commit d99def7dcf
.
Signed-off-by: Alexander Mikhalitsyn <alexander.mikhalitsyn@virtuozzo.com>
15 lines
352 B
Cheetah
15 lines
352 B
Cheetah
ARG CC=gcc
|
|
|
|
COPY scripts/ci/prepare-for-fedora-rawhide.sh /bin/prepare-for-fedora-rawhide.sh
|
|
RUN /bin/prepare-for-fedora-rawhide.sh
|
|
|
|
COPY . /criu
|
|
WORKDIR /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)
|