summaryrefslogtreecommitdiff
path: root/playbooks/unittests/run.yaml
blob: c66c4e3cb4e336e5c356a93c71ef78429067280e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 }}'