diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 12:57:48 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-25 12:57:48 +0200 |
commit | a3c1ba489253888415e16b1e0b219e17d2251842 (patch) | |
tree | 7632e2c787ea72f98b2dbe76aa57e40e3eee8898 /.build.yml | |
parent | bc2bd700f5da40ed2523a57263de303cc52e4b8a (diff) | |
download | ayatana-indicator-keyboard-a3c1ba489253888415e16b1e0b219e17d2251842.tar.gz ayatana-indicator-keyboard-a3c1ba489253888415e16b1e0b219e17d2251842.tar.bz2 ayatana-indicator-keyboard-a3c1ba489253888415e16b1e0b219e17d2251842.zip |
.build.yml: Drop autogen.sh support.
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -12,7 +12,6 @@ requires: - which - cmake - cmake-extras - - mate-common - intltool - glib2 - libx11 @@ -21,7 +20,6 @@ requires: debian: # Useful URL: https://salsa.debian.org/debian-ayatana-team/ayatana-ido - - autopoint - clang - clang-tools - g++ @@ -29,7 +27,6 @@ requires: - git - cmake - cmake-extras - - mate-common - intltool - libglib2.0-dev - libx11-dev @@ -38,14 +35,12 @@ requires: # - libayatana-common-dev ubuntu: - - autopoint - clang - clang-tools - g++ - git - cmake - cmake-extras - - mate-common - intltool - libglib2.0-dev - libx11-dev @@ -87,10 +82,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 @@ -118,9 +110,7 @@ build_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 |