summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-04-02 19:07:22 +0300
committerAndrew Dolgov <[email protected]>2023-04-02 19:07:22 +0300
commit5ea48521b98a082795eb35fa22ab0e22aa35f72f (patch)
treeb0ba5edf33120e6e29e36f7a9382f359de184068
parent878c6d82e419fadda6b19d4723afbb53d861eeb1 (diff)
use gitlab ciHEADmaster
-rw-r--r--.gitlab-ci.yml10
-rw-r--r--Jenkinsfile17
2 files changed, 10 insertions, 17 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..8178ea1
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,10 @@
+stages:
+ - lint
+
+include:
+ - project: 'ci/ci-templates'
+ ref: master
+ file: .ci-lint-common.yml
+
+phpstan:
+ extends: .phpstan-tt-rss-plugin
diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 0991f2c..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/plugin \
- --workdir /src/tt-rss \
- --rm registry.fakecake.org/cthulhoo/ttrss-fpm-pgsql-static:latest \
- php81 ./vendor/bin/phpstan analyse plugins/plugin
- """
- }
- }
- }
-}