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

Effectue plus de tests.

No related merge requests found
Pipeline #16912 passed with stages
in 1 minute and 36 seconds
Showing with 25 additions and 4 deletions
+25 -4
......@@ -7,7 +7,28 @@ test:
tags: [docker]
parallel:
matrix:
- COMPOSER_MAJOR: "1"
- COMPOSER_MAJOR: "2"
image: composer:${COMPOSER_MAJOR}
script: composer install --ignore-platform-reqs
- COMPOSER_MAJOR:
- "1"
- "2"
COMPOSER_OPTS:
- ""
- "--prefer-lowest --prefer-stable"
PHP_VERSION:
- "7.1"
- "7.3"
- "7.4"
- "8.0-rc"
image: php:${PHP_VERSION}-cli
rules:
- if: $PHP_VERSION == "8.0-rc"
allow_failure: true
- when: always
before_script:
- echo -e "section_start:`date +%s`:setup[collapsed=true]\r\e[0KInstall dependencies"
- apt-get update -yqq && apt-get install -yqq unzip git
- curl -sSL "https://getcomposer.org/composer-${COMPOSER_MAJOR}.phar" -o /tmp/composer
- echo -en "section_end:`date +%s`:setup\r\e[0K"
- php -v
- php /tmp/composer -V
script:
- php /tmp/composer update --ignore-platform-reqs
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