mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-26 02:28:37 +00:00
Follow up to 5fba8dd1a3
to make it easier to enable them
Acked-by: Christophe Fergeau <cfergeau@redhat.com>
24 lines
482 B
YAML
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
|