summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorwn_ <[email protected]>2022-12-12 22:38:16 +0000
committerwn_ <[email protected]>2022-12-12 22:38:18 +0000
commit457553eeac9cb8e261cd96680d0bb85e1d7555c1 (patch)
tree8b92790b1fe77ad28f721831a8cdbcc7c4409f3c /plugins
parent031782884769872735e6a73452043324ab634ef1 (diff)
Add af_readability 'html5-php' Jenkinsfile.
Got missed when updating that dependency.
Diffstat (limited to 'plugins')
-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
+ """
+ }
+ }
+ }
+}