Add af_readability 'html5-php' Jenkinsfile.
Got missed when updating that dependency.
This commit is contained in:
parent
0317828847
commit
457553eeac
|
@ -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
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue