Skip to content

Commit b943e89

Browse files
committed
Install composer in the base image
1 parent 3478809 commit b943e89

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ distro_id=$(grep "^ID=" /etc/os-release)
77
# Install everything for configure and testing
88
case $distro_id in
99
"ID=fedora")
10-
dnf install pkg-config make bats autoconf automake util-linux -y ;;
10+
dnf install pkg-config make bats autoconf automake -y
11+
dnf install util-linux composer -y ;;
1112
*)
1213
apt-get update; apt-get full-upgrade -y
13-
apt-get install pkg-config make bats autoconf -y ;;
14+
apt-get install pkg-config make bats autoconf composer -y ;;
1415
esac
1516

1617
# Build the configure file

0 commit comments

Comments
 (0)