File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
.github/jobs/configure-checks Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,16 @@ distro_id=$(grep "^ID=" /etc/os-release)
77# Install everything for configure and testing
88case $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 ;;
1818esac
1919
20- # Build the configure file
21- make configure
22-
2320# Install extra assert statements for bots
2421cp submit/assert.bash .github/jobs/configure-checks/
2522
You can’t perform that action at this time.
0 commit comments