1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-12 01:39:52 +02:00
ttrss-docker-compose/Jenkinsfile
2022-10-02 14:35:39 +03:00

17 lines
397 B
Groovy

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
"""
}
}
}
}