Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / lint-shell (push) Has been cancelled
Mark stable commit / lint-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
- Added python-pip for Arch, python3-pip for CentOS, Debian, Fedora, and Ubuntu. - Ensures that pip is available for Python package installations across systems. https://chatgpt.com/share/693fedab-69ac-800f-a8f9-19d504787565
23 lines
311 B
Bash
Executable File
23 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "[fedora/dependencies] Installing Fedora build dependencies..."
|
|
|
|
dnf -y update
|
|
dnf -y install \
|
|
git \
|
|
rsync \
|
|
rpm-build \
|
|
make \
|
|
gcc \
|
|
bash \
|
|
curl \
|
|
ca-certificates \
|
|
python3 \
|
|
python3-pip \
|
|
xz
|
|
|
|
dnf clean all
|
|
|
|
echo "[fedora/dependencies] Done."
|