summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-04-02 19:07:21 +0300
committerAndrew Dolgov <[email protected]>2023-04-02 19:07:21 +0300
commit944332d4b911bfd62db7d5f1097a1172410844cc (patch)
treef7be51df8558560f3b6c0a97056f96a6b5a55b2b
parent74164e7a8dcea0aa27a6c6cf378082c09f0892b7 (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
- """
- }
- }
- }
-}