From f1eeeb957c1023e379f2a98f3474a620e5228a7f Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 21 Apr 2021 12:24:59 +0200 Subject: .build.yml: Test target with CMake is 'test', with autotools it is 'check'. --- .build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3