Add af_readability 'html5-php' Jenkinsfile.

Got missed when updating that dependency.
This commit is contained in:
wn_ 2022-12-12 22:38:16 +00:00
parent 0317828847
commit 457553eeac
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '5'))
}
stages {
stage('phpstan') {
steps {
sh """
docker run --rm -v ${env.WORKSPACE}:/src/tt-rss/lib/local \
--workdir /src/tt-rss registry.fakecake.org/cthulhoo/ttrss-fpm-pgsql-static:latest\
php81 ./vendor/bin/phpstan analyse lib/local --memory-limit=1G
"""
}
}
}
}