Skip to content

Commit 5c09805

Browse files
authored
Update setup_configure_image.sh
1 parent b62a451 commit 5c09805

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/jobs/configure-checks/setup_configure_image.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,16 @@ distro_id=$(grep "^ID=" /etc/os-release)
77
# Install everything for configure and testing
88
case $distro_id in
99
"ID=arch")
10-
pacman -Sy --noconfirm make bats autoconf automake tar ;;
10+
pacman -Sy --noconfirm make bats tar ;;
1111
"ID=fedora")
12-
dnf install make autoconf automake bats -y ;;
12+
dnf install make bats -y ;;
1313
'ID="opensuse-leap"')
14-
zypper install -y make bats autoconf automake ;;
14+
zypper install -y make bats ;;
1515
*)
1616
apt-get update; apt-get full-upgrade -y
17-
apt-get install make bats autoconf -y ;;
17+
apt-get install make bats -y ;;
1818
esac
1919

20-
# Build the configure file
21-
make configure
22-
2320
# Install extra assert statements for bots
2421
cp submit/assert.bash .github/jobs/configure-checks/
2522

0 commit comments

Comments
 (0)