aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-25 12:02:14 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-25 12:02:14 +0200
commit3d034271717b3a0c7f9be842a478d4d59a1eafc1 (patch)
tree4b6cc3a5f2a415dcf0c97a7e7dc4bde59e815cba /.build.yml
parent8be805d52a520e73103409c081733ca100f16192 (diff)
downloadayatana-indicator-bluetooth-3d034271717b3a0c7f9be842a478d4d59a1eafc1.tar.gz
ayatana-indicator-bluetooth-3d034271717b3a0c7f9be842a478d4d59a1eafc1.tar.bz2
ayatana-indicator-bluetooth-3d034271717b3a0c7f9be842a478d4d59a1eafc1.zip
.build.yml: Drop autogen.sh support.
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml15
1 files changed, 2 insertions, 13 deletions
diff --git a/.build.yml b/.build.yml
index 8dba6fc..99536b4 100644
--- a/.build.yml
+++ b/.build.yml
@@ -23,7 +23,6 @@ requires:
debian:
# Useful URL: https://salsa.debian.org/debian-ayatana-team/ayatana-indicator-bluetooth
- - autopoint
- clang
- clang-tools
- g++
@@ -31,7 +30,6 @@ requires:
- git
- cmake
- cmake-extras
- - mate-common
- intltool
- libglib2.0-dev
- systemd
@@ -42,14 +40,12 @@ requires:
- liblomiri-url-dispatcher-dev
ubuntu:
- - autopoint
- clang
- clang-tools
- g++
- git
- cmake
- cmake-extras
- - mate-common
- intltool
- libglib2.0-dev
- systemd
@@ -60,14 +56,12 @@ requires:
- liblomiri-url-dispatcher-dev
ubuntu:focal:
- - autopoint
- clang
- clang-tools
- g++
- git
- cmake
- cmake-extras
- - mate-common
- intltool
- libglib2.0-dev
- systemd
@@ -110,10 +104,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
@@ -141,9 +132,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} env CTEST_OUTPUT_ON_FAILURE=1 make test
# - fi
# - fi