aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-09-02 19:55:50 +0200
committerRobert Tari <robert@tari.in>2021-10-20 01:36:36 +0200
commitf75ac44417af7118a54f95a3fcfd636d998f27c8 (patch)
tree0f3a9cdf116fbe5e4adcb139b8ab1e255fedfb74 /.build.yml
parent3ea1fef6b8fe17583b8839a450c347199d45ba96 (diff)
downloadayatana-indicator-bluetooth-f75ac44417af7118a54f95a3fcfd636d998f27c8.tar.gz
ayatana-indicator-bluetooth-f75ac44417af7118a54f95a3fcfd636d998f27c8.tar.bz2
ayatana-indicator-bluetooth-f75ac44417af7118a54f95a3fcfd636d998f27c8.zip
.build.yml: Also run unit tests during CI builds against Ubuntu.
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.build.yml b/.build.yml
index 6c7913e..8dba6fc 100644
--- a/.build.yml
+++ b/.build.yml
@@ -114,7 +114,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
@@ -140,7 +140,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