mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-13 04:39:51 +02:00
18 lines
397 B
Text
18 lines
397 B
Text
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('phpstan') {
|
||
|
steps {
|
||
|
sh """
|
||
|
docker run --pull=always \
|
||
|
-v ${env.WORKSPACE}:/src/tt-rss/plugins/plugin \
|
||
|
--workdir /src/tt-rss \
|
||
|
--rm cthulhoo/ttrss-fpm-pgsql-static:latest \
|
||
|
php81 ./vendor/bin/phpstan analyse plugins/plugin
|
||
|
"""
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|