diff options
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r-- | bitbucket-pipelines.yml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 38a7b44d..61beefd2 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -16,17 +16,26 @@ pipelines: - 'linux.shell' script: - git submodule update --init - - cmake -B build -GNinja - - ninja -C build rekonq_check_license + - cmake --preset debug -GNinja + - ninja -C cmake-build-debug rekonq_check_license + - 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: Debug Build + name: Release Build runs-on: - 'self.hosted' - 'linux.shell' script: - git submodule update --init - - cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTESTING=ON -GNinja - - ninja -C build - - ninja -C build test + - cmake --preset release -GNinja + - cmake --build --preset release |