summaryrefslogtreecommitdiff
path: root/roles/test_liberasurecode/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/test_liberasurecode/tasks/main.yaml')
-rw-r--r--roles/test_liberasurecode/tasks/main.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/test_liberasurecode/tasks/main.yaml b/roles/test_liberasurecode/tasks/main.yaml
new file mode 100644
index 0000000..4df9215
--- /dev/null
+++ b/roles/test_liberasurecode/tasks/main.yaml
@@ -0,0 +1,14 @@
+- name: Build and test liberasurecode
+ shell:
+ cmd: |
+ set -e
+ set -x
+ sudo bash -c "echo /usr/local/lib >> /etc/ld.so.conf"
+ sudo ldconfig
+ ./autogen.sh
+ ./configure
+ make
+ make test
+ make valgrind-test
+ executable: /bin/bash
+ chdir: '{{ zuul.project.src_dir }}'