Commit 8faf51dd authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Installe pcov (sauf sur PHP 8.0).

No related merge requests found
Pipeline #16917 failed with stages
in 25 minutes
Showing with 5 additions and 1 deletion
+5 -1
...@@ -27,7 +27,11 @@ test: ...@@ -27,7 +27,11 @@ test:
- | - |
echo -e "section_start:`date +%s`:setup[collapsed=true]\r\e[0KInstall dependencies" echo -e "section_start:`date +%s`:setup[collapsed=true]\r\e[0KInstall dependencies"
apt-get update -yqq apt-get update -yqq
apt-get install -yqq unzip git php-pcov apt-get install -yqq unzip git
if [[ $PHP_VERSION != "8.0-rc" ]]; then
pecl install pcov
docker-php-ext-enable pcov
fi
curl -sSL "https://getcomposer.org/composer-${COMPOSER_MAJOR}.phar" -o /tmp/composer curl -sSL "https://getcomposer.org/composer-${COMPOSER_MAJOR}.phar" -o /tmp/composer
echo -en "section_end:`date +%s`:setup\r\e[0K" echo -en "section_end:`date +%s`:setup\r\e[0K"
- php -v - php -v
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment