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)
7
7
# Install everything for configure and testing
8
8
case $distro_id in
9
9
" ID=arch" )
10
- pacman -Sy --noconfirm make bats autoconf automake tar ;;
10
+ pacman -Sy --noconfirm make bats tar ;;
11
11
" ID=fedora" )
12
- dnf install make autoconf automake bats -y ;;
12
+ dnf install make bats -y ;;
13
13
' ID="opensuse-leap"' )
14
- zypper install -y make bats autoconf automake ;;
14
+ zypper install -y make bats ;;
15
15
* )
16
16
apt-get update; apt-get full-upgrade -y
17
- apt-get install make bats autoconf -y ;;
17
+ apt-get install make bats -y ;;
18
18
esac
19
19
20
- # Build the configure file
21
- make configure
22
-
23
20
# Install extra assert statements for bots
24
21
cp submit/assert.bash .github/jobs/configure-checks/
25
22
You can’t perform that action at this time.
0 commit comments