summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
new file mode 100644
index 00000000..2144bea0
--- /dev/null
+++ b/bitbucket-pipelines.yml
@@ -0,0 +1,13 @@
+pipelines:
+ custom:
+ FullBuildTest:
+ - step:
+ name: Debug 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 \ No newline at end of file