diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-21 12:24:59 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-21 16:49:43 +0200 |
commit | f1eeeb957c1023e379f2a98f3474a620e5228a7f (patch) | |
tree | fa7e1bf0264f7d699e25bb99fbe7503054d1749e | |
parent | bde5cc1d28368d65e9425a10805c182f3ee4ae76 (diff) | |
download | ayatana-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.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |