diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 12:15:18 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 12:15:18 +0200 |
commit | fd1d99c04589091b1f6efa5673e79d4e2335873e (patch) | |
tree | 24370b53b81843191edffba429738f74aadc5e8e | |
parent | 2048cd983ed5626c10dba5b1542f99cf5857399a (diff) | |
download | ayatana-indicator-datetime-fd1d99c04589091b1f6efa5673e79d4e2335873e.tar.gz ayatana-indicator-datetime-fd1d99c04589091b1f6efa5673e79d4e2335873e.tar.bz2 ayatana-indicator-datetime-fd1d99c04589091b1f6efa5673e79d4e2335873e.zip |
.build.yml: Drop autogen.sh support.
-rw-r--r-- | .build.yml | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -11,7 +11,6 @@ requires: - which - cmake - cmake-extras - - mate-common - dbus - intltool # - libayatana-common @@ -31,7 +30,6 @@ requires: debian: # Useful URL: https://salsa.debian.org/debian-ayatana-team/ayatana-ido - - autopoint - clang - clang-tools - g++ @@ -39,7 +37,6 @@ requires: - git - cmake - cmake-extras - - mate-common - intltool - libaccounts-glib-dev # - libayatana-common-dev @@ -73,7 +70,6 @@ requires: - gcovr ubuntu: - - autopoint - clang - clang-tools - g++ @@ -81,7 +77,6 @@ requires: - git - cmake - cmake-extras - - mate-common - intltool - libaccounts-glib-dev # - libayatana-common-dev @@ -114,7 +109,6 @@ requires: - gcovr ubuntu:focal: - - autopoint - clang - clang-tools - g++ @@ -122,7 +116,6 @@ requires: - git - cmake - cmake-extras - - mate-common - intltool - libaccounts-glib-dev # - libayatana-common-dev @@ -196,10 +189,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" ] || [ ${DISTRO_NAME} == "ubuntu" ]; then - scan-build $CHECKERS cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON - else @@ -227,9 +217,7 @@ after_scripts: - if [ ${BUILD_TYPE} == "scripts" ];then - XVFB_RUN="$(which xvfb-run || true)" - if [ ${DISTRO_NAME} == "debian" ] || [ ${DISTRO_NAME} == "ubuntu" ];then - - if [ -e ./autogen.sh ]; then - - ${XVFB_RUN} make check - - elif [ -e ./CMakeLists.txt ]; then + - if [ -e ./CMakeLists.txt ]; then - ${XVFB_RUN} make test - fi - fi |