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 8db2d5c commit 191cb93Copy full SHA for 191cb93
.github/jobs/configure-checks/setup_configure_image.sh
@@ -5,16 +5,17 @@ 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"
+shared="pkg-config make rst2pdf autoconf composer bats latexmk"
9
+shared2="$shared python3-{yaml,sphinx}"
10
11
case $distro_id in
12
"ID=fedora")
13
dnf install $shared automake util-linux \
- python3-{yaml,sphinx{,_rtd_theme}} -y ;;
14
+ python3-sphinx_rtd_theme -y ;;
15
*)
16
apt-get update; apt-get full-upgrade -y
- apt-get install $shared latexmk \
17
- python3-{yaml,sphinx{,-rtd-theme}} -y ;;
+ apt-get install $shared \
18
+ python3-rtd-theme -y ;;
19
esac
20
21
# Build the configure file
0 commit comments