Skip to content

Commit

Permalink
Do the composer install
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcj committed Jan 31, 2024
1 parent b3a59f2 commit d8656a5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/jobs/configure-checks/setup_configure_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,20 @@ case $distro_id in
apt-get update; apt-get full-upgrade -y
apt-get install pkg-config make bats autoconf -y
apt-get install composer php php-cli php-curl php-fpm php-gd \
php-intl php-json php-mbstring php-mysql php-xml php-zip -y;;
php-intl php-json php-mbstring php-mysql php-xml php-zip -y
;;
esac

# Build the configure file
make configure

case $distro_id in
"ID=fedora")
true ;;
*)
composer install --no-scripts ;;
esac

# Install extra assert statements for bots
cp submit/assert.bash .github/jobs/configure-checks/

Expand Down

0 comments on commit d8656a5

Please sign in to comment.