mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
ccache was set up in Travis to speed up compilation by re-using the .ccache directory from previous CI runs. As we are no longer using Travis we can remove all CI related ccache setup. Signed-off-by: Adrian Reber <areber@redhat.com>
40 lines
598 B
Bash
Executable File
40 lines
598 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
dnf install -y \
|
|
diffutils \
|
|
findutils \
|
|
gcc \
|
|
git \
|
|
gnutls-devel \
|
|
gzip \
|
|
iproute \
|
|
iptables \
|
|
nftables \
|
|
nftables-devel \
|
|
libaio-devel \
|
|
libasan \
|
|
libcap-devel \
|
|
libnet-devel \
|
|
libnl3-devel \
|
|
make \
|
|
procps-ng \
|
|
protobuf-c-devel \
|
|
protobuf-devel \
|
|
python3-flake8 \
|
|
python3-PyYAML \
|
|
python3-future \
|
|
python3-protobuf \
|
|
python3-junit_xml \
|
|
python-unversioned-command \
|
|
redhat-rpm-config \
|
|
sudo \
|
|
tar \
|
|
which \
|
|
e2fsprogs \
|
|
rubygem-asciidoctor \
|
|
kmod
|
|
|
|
# /tmp is no longer 755 in the rawhide container image and breaks CI - fix it
|
|
chmod 1777 /tmp
|