Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
.default_build: &default_build
script:
- autoreconf -ivf
- - ./configure --disable-silent-rules
+ - ./configure --disable-silent-rules $CONFIGURE_FLAGS
- make
- make check
<<: *default_artifacts
.default_build_distcheck: &default_build_distcheck
script:
- autoreconf -ivf
- - ./configure --disable-silent-rules
+ - ./configure --disable-silent-rules $CONFIGURE_FLAGS
- make
- make check
- make distcheck
centos:7@enable-gcov:
extends: .centos-custom-build@template
- script:
- - autoreconf -ivf
- - ./configure --disable-silent-rules --enable-gcov
- - make
- - make check
- - make distcheck
<<: *default_artifacts
+ variables:
+ CONFIGURE_FLAGS: "--enable-gcov"