1 files changed, 0 insertions(+), 36 deletions(-)
D .builds/php8_0.yml
D .builds/php8_0.yml => .builds/php8_0.yml +0 -36
@@ 1,36 0,0 @@
----
-image: debian/sid
-
-sources:
- - https://git.sr.ht/~ancarda/psr7-string-stream
-
-packages:
- - php8.0-cli
- - composer
-
- # PHP 8.0 on debian/sid does not come with mbstring by default?
- # See: https://builds.sr.ht/~ancarda/job/453331
- - php8.0-mbstring
-
- # some dev tools use XML config files
- - php8.0-xml
-
- # for code coverage (phpunit and infection)
- - php-xdebug
-
- # for composer
- - unzip
-
-environment:
- DIR: psr7-string-stream
- XDEBUG_MODE: coverage
-
-tasks:
- - composer: cd $DIR && composer install
- - analyze: cd $DIR && composer run-script analyze
- - check-style: cd $DIR && composer run-script check-style
- - test: cd $DIR && composer run-script test
-
- # coverage is not yet working on PHP 8.0
- # See: https://builds.sr.ht/~ancarda/job/453338#task-check-tests
- # - check-tests: cd $DIR && composer run-script check-tests