diff options
author | Robert Antoni Buj Gelonch <[email protected]> | 2021-02-22 22:42:03 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-22 22:42:03 +0100 |
commit | 24b898a0111f9212a6bbcc1db607b5cc345ca5e4 (patch) | |
tree | a58f5b73dffd265375476d5c860415d9fca5c9f5 /.build.yml | |
parent | 5105756a01af79ef789b2841e9609405b043ae45 (diff) | |
download | mate-indicator-applet-24b898a0111f9212a6bbcc1db607b5cc345ca5e4.tar.bz2 mate-indicator-applet-24b898a0111f9212a6bbcc1db607b5cc345ca5e4.tar.xz |
Merge pull request #69 from mate-desktop/debian-ci-fix
Travis CI: debian build: Use Ayatana Indicators
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -26,7 +26,8 @@ requires: - gcc - git - libgtk-3-dev - - libindicator3-dev + - libayatana-ido3-dev + - libayatana-indicator3-dev - libmate-panel-applet-dev - libtool - libx11-dev @@ -103,7 +104,11 @@ build_scripts: - fi - NOCONFIGURE=1 ./autogen.sh - - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum + - if [ ${DISTRO_NAME} == "debian" ];then + - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --with-ayatana-indicators=yes + - else + - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum + - fi - if [ $CPU_COUNT -gt 1 ]; then - if [ ${DISTRO_NAME} == "debian" ];then - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT |