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.
18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
2 years ago
|
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
|
||
|
"""
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|