We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3a59f2 commit d8656a5Copy full SHA for d8656a5
.github/jobs/configure-checks/setup_configure_image.sh
@@ -12,12 +12,20 @@ case $distro_id in
12
apt-get update; apt-get full-upgrade -y
13
apt-get install pkg-config make bats autoconf -y
14
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;;
+ php-intl php-json php-mbstring php-mysql php-xml php-zip -y
16
+ ;;
17
esac
18
19
# Build the configure file
20
make configure
21
22
+case $distro_id in
23
+ "ID=fedora")
24
+ true ;;
25
+ *)
26
+ composer install --no-scripts ;;
27
+esac
28
+
29
# Install extra assert statements for bots
30
cp submit/assert.bash .github/jobs/configure-checks/
31
0 commit comments