Skip to content
Snippets Groups Projects

WIP: Capture PHPUnit reports

Closed Erick Hitter requested to merge add/junit into master
Files
2
+ 15
0
@@ -32,6 +32,9 @@ PHPunit:PHP5.3:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/junit.xml
PHPunit:PHP5.6:MySQL:
image: containers.ethitter.com:443/docker/images/php:5.6
@@ -41,6 +44,9 @@ PHPunit:PHP5.6:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/junit.xml
PHPunit:PHP7.0:MySQL:
image: containers.ethitter.com:443/docker/images/php:7.0
@@ -50,6 +56,9 @@ PHPunit:PHP7.0:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/junit.xml
PHPunit:PHP7.1:MySQL:
image: containers.ethitter.com:443/docker/images/php:7.1
@@ -59,6 +68,9 @@ PHPunit:PHP7.1:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/junit.xml
PHPunit:PHP7.2:MySQL:
image: containers.ethitter.com:443/docker/images/php:7.2
@@ -68,3 +80,6 @@ PHPunit:PHP7.2:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/junit.xml
Loading