aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-25 17:10:18 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-25 17:10:18 +0200
commit92b4022a80aa68a9d7bd663b5718b832cef58c91 (patch)
tree83a615116cf2c66a984313451454a1c9bfe6f7be /.build.yml
parentf2f735386ee56c0449761e9bd75e367f0050b0f7 (diff)
downloadayatana-indicator-sound-92b4022a80aa68a9d7bd663b5718b832cef58c91.tar.gz
ayatana-indicator-sound-92b4022a80aa68a9d7bd663b5718b832cef58c91.tar.bz2
ayatana-indicator-sound-92b4022a80aa68a9d7bd663b5718b832cef58c91.zip
.build.yml: Drop autogen.sh support.
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml16
1 files changed, 2 insertions, 14 deletions
diff --git a/.build.yml b/.build.yml
index 7126e24..c662b4e 100644
--- a/.build.yml
+++ b/.build.yml
@@ -12,7 +12,6 @@ requires:
- which
- cmake
- cmake-extras
- - mate-common
- dbus
- accountsservice
- gsettings-desktop-schemas
@@ -33,7 +32,6 @@ requires:
debian:
# Useful URL: https://salsa.debian.org/debian-ayatana-team/ayatana-indicator-sound
- - autopoint
- clang
- clang-tools
- g++
@@ -41,7 +39,6 @@ requires:
- git
- cmake
- cmake-extras
- - mate-common
- dbus
- gir1.2-accountsservice-1.0
- intltool
@@ -72,7 +69,6 @@ requires:
- python3-dbusmock
ubuntu:
- - autopoint
- clang
- clang-tools
- g++
@@ -80,7 +76,6 @@ requires:
- git
- cmake
- cmake-extras
- - mate-common
- dbus
- gir1.2-accountsservice-1.0
- intltool
@@ -111,7 +106,6 @@ requires:
- python3-dbusmock
ubuntu:focal:
- - autopoint
- clang
- clang-tools
- g++
@@ -119,7 +113,6 @@ requires:
- git
- cmake
- cmake-extras
- - mate-common
- dbus
- gir1.2-accountsservice-1.0
- intltool
@@ -182,10 +175,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
@@ -213,9 +203,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} env CTEST_OUTPUT_ON_FAILURE=1 make test
- fi
- fi