summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/masterminds/html5/Jenkinsfile
diff options
context:
space:
mode:
authorfox <[email protected]>2022-12-13 19:45:50 +0300
committerfox <[email protected]>2022-12-13 19:45:50 +0300
commit313f12ae9306fc62bbbfa10310a2feb20aa274c5 (patch)
tree8b92790b1fe77ad28f721831a8cdbcc7c4409f3c /plugins/af_readability/vendor/masterminds/html5/Jenkinsfile
parent72e64bdb780f62ffb593df32fd83334ae588a837 (diff)
parent457553eeac9cb8e261cd96680d0bb85e1d7555c1 (diff)
Merge pull request 'Bump af_readability 'html5-php' dependency to latest.' (#94) from wn/tt-rss:feature/bump-af_readability-masterminds-html5 into master
Reviewed-on: https://dev.tt-rss.org/tt-rss/tt-rss/pulls/94
Diffstat (limited to 'plugins/af_readability/vendor/masterminds/html5/Jenkinsfile')
-rw-r--r--plugins/af_readability/vendor/masterminds/html5/Jenkinsfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/af_readability/vendor/masterminds/html5/Jenkinsfile b/plugins/af_readability/vendor/masterminds/html5/Jenkinsfile
new file mode 100644
index 000000000..c0adb8d65
--- /dev/null
+++ b/plugins/af_readability/vendor/masterminds/html5/Jenkinsfile
@@ -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
+ """
+ }
+ }
+ }
+}