diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 11:56:44 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 11:56:44 +0200 |
commit | 441c558be133bbda4259cadf20f86a1231d614f0 (patch) | |
tree | b74db346972356884115a5e97ab23cd8bb1e3f8a | |
parent | bff6bb836dd9185afeda2bf92ab281c0d50bcde1 (diff) | |
download | ayatana-indicator-application-441c558be133bbda4259cadf20f86a1231d614f0.tar.gz ayatana-indicator-application-441c558be133bbda4259cadf20f86a1231d614f0.tar.bz2 ayatana-indicator-application-441c558be133bbda4259cadf20f86a1231d614f0.zip |
.build.yml: Drop autogen.sh support.
-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 |