summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-09-05 16:17:07 +0300
committeraqua <aqua@iserlohn-fortress.net>2022-09-05 20:06:56 +0300
commitdafb286101e62802f036df552a91abd52289f75e (patch)
treef7047d311df6d2bfe0a0f0e14ca9013f6c5a8330 /bitbucket-pipelines.yml
parentAdd scripts/qrc_lint.py (diff)
downloadrekonq-dafb286101e62802f036df552a91abd52289f75e.tar.xz
Add ccache to debug build preset
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml40
1 files changed, 19 insertions, 21 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index 1c2cf424..81f0bdde 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -21,24 +21,22 @@ pipelines:
- cmake --preset debug -GNinja
- ninja -C cmake-build-debug rekonq_check_license
- git ls-files | grep '\.qrc$' | xargs -n1 ./scripts/qrc_lint.py
- - step:
- name: Debug Build Test
- runs-on:
- - 'self.hosted'
- - 'linux.shell'
- script:
- - git submodule update --init
- - cmake --preset debug -GNinja
- - cmake --build --preset debug
- - ctest --preset debug --output-junit test-results/all.xml
- custom:
- FullBuildTest:
- - step:
- name: Release Build
- runs-on:
- - 'self.hosted'
- - 'linux.shell'
- script:
- - git submodule update --init
- - cmake --preset release -GNinja
- - cmake --build --preset release
+ - step:
+ name: Debug Build and Test
+ runs-on:
+ - 'self.hosted'
+ - 'linux.shell'
+ script:
+ - git submodule update --init
+ - cmake --preset debug -GNinja
+ - cmake --build --preset debug
+ - ctest --preset debug --output-junit test-results/all.xml
+ - step:
+ name: Release Build
+ runs-on:
+ - 'self.hosted'
+ - 'linux.shell'
+ script:
+ - git submodule update --init
+ - cmake --preset release -GNinja
+ - cmake --build --preset release