summaryrefslogtreecommitdiff
path: root/playbooks/unittests/run.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/unittests/run.yaml')
-rw-r--r--playbooks/unittests/run.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/playbooks/unittests/run.yaml b/playbooks/unittests/run.yaml
new file mode 100644
index 0000000..c66c4e3
--- /dev/null
+++ b/playbooks/unittests/run.yaml
@@ -0,0 +1,15 @@
+- hosts: all
+
+ tasks:
+ - name: Build and test
+ shell:
+ cmd: |
+ set -e
+ set -x
+ ./autogen.sh
+ ./configure
+ make
+ make test
+ make valgrind-test
+ executable: /bin/bash
+ chdir: '{{ zuul.project.src_dir }}'