Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Makefile.install
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ endif
endif

# Default flags for pip install:
# --upgrade: Upgrade crit/pycriu packages
# --ignore-installed: Ignore existing packages and reinstall them
PIPFLAGS ?= --upgrade --ignore-installed
# --ignore-installed: Overwrite already installed pycriu/crit packages
# --no-build-isolation: Use current Python environment to build pycriu/crit packages
# --no-deps: Don't install any dependencies
# --no-index: Don't use PyPI index to find packages
# --progress-bar: Cleaner output
# --upgrade: Treat the install as an upgrade when replacing the installed version
PIPFLAGS ?= --ignore-installed --no-build-isolation --no-deps --no-index --progress-bar off --upgrade

export SKIP_PIP_INSTALL PIPFLAGS

Expand Down
5 changes: 4 additions & 1 deletion contrib/dependencies/dnf-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ dnf install -y \
protobuf-c-devel \
protobuf-compiler \
protobuf-devel \
python-devel \
python3-importlib-metadata \
python3-protobuf \
python3-pyyaml \
python-devel \
python3-setuptools \
python3-wheel \
rubygem-asciidoctor \
which \
xmlto
Loading