We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c7c59 commit ed35165Copy full SHA for ed35165
.github/jobs/configure-checks/setup_configure_image.sh
@@ -5,13 +5,15 @@ set -eux
5
distro_id=$(grep "^ID=" /etc/os-release)
6
7
# Install everything for configure and testing
8
+shared="pkg-config make rst2pdf autoconf composer bats"
9
+
10
case $distro_id in
11
"ID=fedora")
- dnf install pkg-config make bats autoconf automake util-linux composer \
12
+ dnf install $shared automake util-linux \
13
python3-{yaml,sphinx{,_rtd_theme}} -y ;;
14
*)
15
apt-get update; apt-get full-upgrade -y
- apt-get install pkg-config make bats autoconf composer \
16
+ apt-get install $shared \
17
python3-{yaml,sphinx{,-rtd-theme}} -y ;;
18
esac
19
0 commit comments