Skip to content

Commit d8656a5

Browse files
committed
Do the composer install
1 parent b3a59f2 commit d8656a5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,20 @@ case $distro_id in
1212
apt-get update; apt-get full-upgrade -y
1313
apt-get install pkg-config make bats autoconf -y
1414
apt-get install composer php php-cli php-curl php-fpm php-gd \
15-
php-intl php-json php-mbstring php-mysql php-xml php-zip -y;;
15+
php-intl php-json php-mbstring php-mysql php-xml php-zip -y
16+
;;
1617
esac
1718

1819
# Build the configure file
1920
make configure
2021

22+
case $distro_id in
23+
"ID=fedora")
24+
true ;;
25+
*)
26+
composer install --no-scripts ;;
27+
esac
28+
2129
# Install extra assert statements for bots
2230
cp submit/assert.bash .github/jobs/configure-checks/
2331

0 commit comments

Comments
 (0)