spice/.gitlab-ci.yml
Pavel Grunt 06cb7378ad build-sys: Add configure option to enable statistics
Follow up to 5fba8dd1a3
to make it easier to enable them

Acked-by: Christophe Fergeau <cfergeau@redhat.com>
2016-11-29 09:39:37 +00:00

24 lines
482 B
YAML

image: fedora:latest
before_script:
- dnf install 'dnf-command(copr)' git libtool make -y
- dnf copr enable @spice/nightly -y
- dnf builddep spice -y
makecheck:
script:
- ./autogen.sh
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
statistics:
script:
- ./autogen.sh --enable-statistics
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
syntax-check:
script:
- ./autogen.sh
- make syntax-check