summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml21
1 files changed, 20 insertions, 1 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index 2144bea0..38a7b44d 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -1,4 +1,23 @@
pipelines:
+ default:
+ - parallel:
+ - step:
+ name: pylint
+ runs-on:
+ - 'self.hosted'
+ - 'linux.shell'
+ script:
+ - python --version
+ - pylint scripts/check_license.py
+ - step:
+ name: license headers check
+ runs-on:
+ - 'self.hosted'
+ - 'linux.shell'
+ script:
+ - git submodule update --init
+ - cmake -B build -GNinja
+ - ninja -C build rekonq_check_license
custom:
FullBuildTest:
- step:
@@ -10,4 +29,4 @@ pipelines:
- git submodule update --init
- cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTESTING=ON -GNinja
- ninja -C build
- - ninja -C build test \ No newline at end of file
+ - ninja -C build test