You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ttrss-docker-compose/Jenkinsfile

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