aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-21 12:24:59 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-21 16:49:43 +0200
commitf1eeeb957c1023e379f2a98f3474a620e5228a7f (patch)
treefa7e1bf0264f7d699e25bb99fbe7503054d1749e
parentbde5cc1d28368d65e9425a10805c182f3ee4ae76 (diff)
downloadayatana-ido-f1eeeb957c1023e379f2a98f3474a620e5228a7f.tar.gz
ayatana-ido-f1eeeb957c1023e379f2a98f3474a620e5228a7f.tar.bz2
ayatana-ido-f1eeeb957c1023e379f2a98f3474a620e5228a7f.zip
.build.yml: Test target with CMake is 'test', with autotools it is 'check'.
-rw-r--r--.build.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 0f1b837..24ae85f 100644
--- a/.build.yml
+++ b/.build.yml
@@ -112,6 +112,10 @@ build_scripts:
after_scripts:
- if [ ${BUILD_TYPE} == "scripts" ];then
- if [ ${DISTRO_NAME} == "debian" ];then
- - make check
+ - if [ -e ./autogen.sh ]; then
+ - make check
+ - elif [ -e ./CMakeLists.txt ]; then
+ - make test
+ - fi
- fi
- fi