diff options
-rw-r--r-- | .build.yml | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -12,7 +12,6 @@ requires: - which - cmake - cmake-extras - - mate-common - xorg-server-xvfb - glib2 - gtk3 @@ -26,7 +25,6 @@ requires: debian: # Useful URL: https://salsa.debian.org/debian-ayatana-team/ayatana-indicator-application - - autopoint - clang - clang-tools - g++ @@ -34,7 +32,6 @@ requires: - git - cmake - cmake-extras - - mate-common - cli-common-dev - intltool - libdbus-1-dev @@ -62,14 +59,12 @@ requires: - xvfb ubuntu: - - autopoint - clang - clang-tools - g++ - git - cmake - cmake-extras - - mate-common - cli-common-dev - intltool - libdbus-1-dev @@ -148,10 +143,7 @@ build_scripts: - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - fi - - - if [ -e ./autogen.sh ]; then - - NOCONFIGURE=1 ./autogen.sh - - scan-build $CHECKERS ./configure --prefix=/usr --enable-gtk-doc --enable-compile-warnings=maximum - - elif [ -e ./CMakeLists.txt ]; then + - if [ -e ./CMakeLists.txt ]; then - if [ ${DISTRO_NAME} == "debian" ];then - scan-build $CHECKERS cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON - else @@ -179,9 +171,7 @@ after_scripts: - if [ ${BUILD_TYPE} == "scripts" ];then - XVFB_RUN="$(which xvfb-run || true)" - if [ ${DISTRO_NAME} == "debian" ];then - - if [ -e ./autogen.sh ]; then - - ${XVFB_RUN} make check - - elif [ -e ./CMakeLists.txt ]; then + - if [ -e ./CMakeLists.txt ]; then - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test - fi - fi |