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 7ae40c9 commit 5a23d5cCopy full SHA for 5a23d5c
.github/jobs/configure-checks/setup_configure_image.sh
@@ -7,10 +7,12 @@ distro_id=$(grep "^ID=" /etc/os-release)
7
# Install everything for configure and testing
8
case $distro_id in
9
"ID=fedora")
10
- dnf install pkg-config make bats autoconf automake util-linux -y ;;
+ dnf install make bats autoconf automake -y ;;
11
+ 'ID="opensuse-leap"')
12
+ zypper install -y make bats autoconf automake ;;
13
*)
14
apt-get update; apt-get full-upgrade -y
- apt-get install pkg-config make bats autoconf -y ;;
15
+ apt-get install make bats autoconf -y ;;
16
esac
17
18
# Build the configure file
0 commit comments