summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-25 19:00:41 +0300
committerAndrew Dolgov <[email protected]>2022-11-25 19:00:41 +0300
commit188df4f99a79485b6d8bd353bf384e4a7eec11df (patch)
tree0ae6c131017365bbb302fcf487d6ca5112821de1
parente30d4667fff89e19c152f6f1049d627b883515c1 (diff)
remove CI, too many dependencies
-rw-r--r--Jenkinsfile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 7122d67..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,17 +0,0 @@
-pipeline {
- agent any
-
- stages {
- stage('phpstan') {
- steps {
- sh """
- docker run --pull=always \
- -v ${env.WORKSPACE}:/src/tt-rss/plugins.local/plugin \
- --workdir /src/tt-rss \
- --rm cthulhoo/ttrss-fpm-pgsql-static:latest \
- php81 ./vendor/bin/phpstan analyse plugins.local/plugin --memory-limit=2G
- """
- }
- }
- }
-}