mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +01:00
CI: configure tests for all supported Debian versions
This commit is contained in:
parent
89a13d86c6
commit
f4f39d967e
3 changed files with 58 additions and 6 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,4 +3,5 @@ upgrade.log
|
|||
*~
|
||||
vendor
|
||||
/src/local.*
|
||||
tests-report.xml
|
||||
tests-report*.xml
|
||||
.phplint-cache
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
stages:
|
||||
- tests
|
||||
|
||||
tests:
|
||||
tests:bullseye:
|
||||
image:
|
||||
name: brenard/ldapsaisie:dev
|
||||
name: brenard/ldapsaisie:bullseye
|
||||
entrypoint: [""]
|
||||
|
||||
stage: tests
|
||||
|
@ -13,10 +13,60 @@ tests:
|
|||
script:
|
||||
- composer install
|
||||
- service slapd start
|
||||
- ./vendor/bin/phpstan analyse --no-interaction --configuration=.phpstan/config.neon --error-format=junit > tests-report.xml
|
||||
- ./vendor/bin/phpstan analyse --no-interaction --configuration=.phpstan/config.neon --error-format=junit > tests-report-bullseye.xml
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- tests-report.xml
|
||||
- tests-report-bullseye.xml
|
||||
reports:
|
||||
junit: tests-report.xml
|
||||
junit: tests-report-bullseye.xml
|
||||
|
||||
tests:buster:
|
||||
image:
|
||||
name: brenard/ldapsaisie:buster
|
||||
entrypoint: [""]
|
||||
|
||||
stage: tests
|
||||
rules:
|
||||
- changes:
|
||||
- src/*
|
||||
script:
|
||||
- composer install
|
||||
- service slapd start
|
||||
- ./vendor/bin/phpstan analyse --no-interaction --configuration=.phpstan/config.neon --error-format=junit > tests-report-buster.xml
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- tests-report-buster.xml
|
||||
reports:
|
||||
junit: tests-report-buster.xml
|
||||
|
||||
tests:stretch:
|
||||
image:
|
||||
name: brenard/ldapsaisie:stretch
|
||||
entrypoint: [""]
|
||||
stage: tests
|
||||
rules:
|
||||
- changes:
|
||||
- src/*
|
||||
script:
|
||||
- cd /tmp/
|
||||
- composer require overtrue/phplint --dev
|
||||
- cd -
|
||||
- rm -f .phplint-cache
|
||||
- /tmp/vendor/bin/phplint src
|
||||
|
||||
tests:jessie:
|
||||
image:
|
||||
name: brenard/ldapsaisie:jessie
|
||||
entrypoint: [""]
|
||||
stage: tests
|
||||
rules:
|
||||
- changes:
|
||||
- src/*
|
||||
script:
|
||||
- cd /tmp/
|
||||
- composer require overtrue/phplint --dev
|
||||
- cd -
|
||||
- rm -f .phplint-cache
|
||||
- /tmp/vendor/bin/phplint src
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
require 'Net/LDAP2.php';
|
||||
require 'Net/FTP.php';
|
||||
require 'Console/Table.php';
|
||||
require 'Zxcvbn/autoload.php';
|
||||
require '/usr/share/php/phpseclib/autoload.php';
|
||||
|
|
Loading…
Reference in a new issue