Skip to content
Snippets Groups Projects
Commit 5dbb6b2a authored by Erick Hitter's avatar Erick Hitter
Browse files

Switch images to provide 7.2 support, fix PHPUnit version

parent 3ef44a4d
No related branches found
No related tags found
1 merge request!1Add GitLab CI
Pipeline #97 failed
...@@ -16,6 +16,10 @@ before_script: ...@@ -16,6 +16,10 @@ before_script:
# PHP extensions # PHP extensions
- docker-php-ext-enable mbstring mcrypt mysqli pdo_mysql intl gd zip bz2 - docker-php-ext-enable mbstring mcrypt mysqli pdo_mysql intl gd zip bz2
# Install Composer
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
# Set up WordPress tests # Set up WordPress tests
- bash bin/install-wp-tests.sh wordpress_tests root mysql mysql latest true - bash bin/install-wp-tests.sh wordpress_tests root mysql mysql latest true
...@@ -28,37 +32,42 @@ PHPunit:PHP5.3:MySQL: ...@@ -28,37 +32,42 @@ PHPunit:PHP5.3:MySQL:
services: services:
- mysql:5.6 - mysql:5.6
script: script:
- phpcs - composer global require "phpunit/phpunit=4.8.*"
- phpunit - phpcs
- phpunit
PHPunit:PHP5.6:MySQL: PHPunit:PHP5.6:MySQL:
image: tetraweb/php:5.6 image: php:5.6-alpine
services: services:
- mysql:5.6 - mysql:5.6
script: script:
- phpcs - composer global require "phpunit/phpunit=4.8.*"
- phpunit - phpcs
- phpunit
PHPunit:PHP7.0:MySQL: PHPunit:PHP7.0:MySQL:
image: tetraweb/php:7.0 image: php:7.0-alpine
services: services:
- mysql:5.6 - mysql:5.6
script: script:
- phpcs - composer global require "phpunit/phpunit=6.1.*"
- phpunit - phpcs
- phpunit
PHPunit:PHP7.1:MySQL: PHPunit:PHP7.1:MySQL:
image: tetraweb/php:7.1 image: php:7.1-alpine
services: services:
- mysql:5.6 - mysql:5.6
script: script:
- phpcs - composer global require "phpunit/phpunit=6.1.*"
- phpunit - phpcs
- phpunit
PHPunit:PHP7.2:MySQL: PHPunit:PHP7.2:MySQL:
image: tetraweb/php:7.2 image: php:7.2-alpine
services: services:
- mysql:5.6 - mysql:5.6
script: script:
- phpcs - composer global require "phpunit/phpunit=6.1.*"
- phpunit - phpcs
- phpunit
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment