From d995a6e164244e22d76efce6235af69d2e0a86c8 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 26 Oct 2021 09:41:13 +0200 Subject: .build.yml: Drop autotools dependencies. --- .build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.build.yml b/.build.yml index 6aca8ad..807a58c 100644 --- a/.build.yml +++ b/.build.yml @@ -11,7 +11,8 @@ requires: - startup-notification - which - pacman - - mate-common + - cmake + - cmake-extras - gtk3 - glib2 # - ayatana-ido @@ -21,7 +22,6 @@ requires: debian: # Useful URL: https://salsa.debian.org/debian-ayatana-team/libayatana-indicator - - autopoint - clang - clang-tools - cppcheck @@ -29,7 +29,6 @@ requires: - libtool - cmake - cmake-extras - - mate-common - at-spi2-core - intltool - gtk-doc-tools @@ -47,14 +46,12 @@ requires: - xvfb ubuntu: - - autopoint - clang - clang-tools - git - libtool - cmake - cmake-extras - - mate-common - at-spi2-core - intltool - gtk-doc-tools -- cgit v1.2.3 From 7839b52acfbdcbe0454e211d2eca2cd6fbcf96fa Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 26 Oct 2021 09:43:02 +0200 Subject: .build.yml: Run unit tests in build_scripts: target. --- .build.yml | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/.build.yml b/.build.yml index 807a58c..05e8e8e 100644 --- a/.build.yml +++ b/.build.yml @@ -167,19 +167,15 @@ build_scripts: - scan-build $CHECKERS --keep-cc -o html-report make - fi - cd ../ - -after_scripts: - - if [ ${BUILD_TYPE} == "scripts" ];then - - XVFB_RUN="$(which xvfb-run || true)" - - if [ ${DISTRO_NAME} == "debian" ];then - - cd build-gtk3/ - - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test - - cd ../ - - cd build-gtk3-no-IDO/ - - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test - - cd ../ - - cd build-gtk2/ - - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test - - cd ../ - - fi + - + - if [ ${DISTRO_NAME} == "debian" ];then + - cd build-gtk3/ + - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test + - cd ../ + - cd build-gtk3-no-IDO/ + - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test + - cd ../ + - cd build-gtk2/ + - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test + - cd ../ - fi -- cgit v1.2.3 From e43c2098e23b5200d00c08af9691c9c4bb27e864 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 26 Oct 2021 09:43:32 +0200 Subject: .build.yml: Remove source code of locally built dependency after it has been installed. --- .build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.build.yml b/.build.yml index 05e8e8e..1bd20d9 100644 --- a/.build.yml +++ b/.build.yml @@ -92,6 +92,8 @@ before_scripts: - cmake . -DCMAKE_INSTALL_PREFIX=/usr - make - make install + - cd - + - rm -Rf ayatana-ido-build/ build_scripts: - if [ ${DISTRO_NAME} == "debian" ];then -- cgit v1.2.3