aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-29 12:24:18 +0200
committerRobert Tari <robert@tari.in>2021-08-30 00:37:05 +0200
commit40c52501732aba18d73b46951d86fa14b442eea6 (patch)
tree85ba1a051bf8a003c0aa8bdedd3124b9be0c2887
parentf1e0194d5ed607669f8fc6430e457e306750edbf (diff)
downloadayatana-indicator-display-40c52501732aba18d73b46951d86fa14b442eea6.tar.gz
ayatana-indicator-display-40c52501732aba18d73b46951d86fa14b442eea6.tar.bz2
ayatana-indicator-display-40c52501732aba18d73b46951d86fa14b442eea6.zip
.build.yml: Also run unit tests on Ubuntu.
-rw-r--r--.build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.build.yml b/.build.yml
index a03f635..d1a101b 100644
--- a/.build.yml
+++ b/.build.yml
@@ -151,7 +151,7 @@ build_scripts:
- NOCONFIGURE=1 ./autogen.sh
- scan-build $CHECKERS ./configure --prefix=/usr --enable-gtk-doc --enable-compile-warnings=maximum
- elif [ -e ./CMakeLists.txt ]; then
- - if [ ${DISTRO_NAME} == "debian" ];then
+ - if [ ${DISTRO_NAME} == "debian" ] || [ ${DISTRO_NAME} == "ubuntu" ];then
- scan-build $CHECKERS cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON
- else
- scan-build $CHECKERS cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON
@@ -177,7 +177,7 @@ build_scripts:
after_scripts:
- if [ ${BUILD_TYPE} == "scripts" ];then
- XVFB_RUN="$(which xvfb-run || true)"
- - if [ ${DISTRO_NAME} == "debian" ];then
+ - if [ ${DISTRO_NAME} == "debian" ] || [ ${DISTRO_NAME} == "ubuntu" ];then
- if [ -e ./autogen.sh ]; then
- ${XVFB_RUN} make check
- elif [ -e ./CMakeLists.txt ]; then