diff options
author | raveit65 <[email protected]> | 2020-04-10 15:24:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-10 15:24:25 +0200 |
commit | cbbcd22e4d2462b15951810e539c3ab71dd72ef1 (patch) | |
tree | 123d119d466803372c5a0986520f960c3ce92c63 | |
parent | 5048cf77cc6acd0488fc595285ecea03eafbf63b (diff) | |
download | mate-panel-cbbcd22e4d2462b15951810e539c3ab71dd72ef1.tar.bz2 mate-panel-cbbcd22e4d2462b15951810e539c3ab71dd72ef1.tar.xz |
Travis CI: build with mate-common-1.24.1 tarball
-rw-r--r-- | .build.yml | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -133,23 +133,11 @@ variables: -enable-checker alpha.core.FixedAddr -enable-checker security.insecureAPI.strcpy"' -build_scripts: - - ./autogen.sh --enable-compile-warnings=maximum - - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - - if [ $CPU_COUNT -gt 1 ]; then - - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT - - else - - scan-build $CHECKERS --keep-cc -o html-report make - - fi - - if [ ${DISTRO_NAME} == "debian" ];then - - cppcheck --enable=warning,style,performance,portability,information,missingInclude -i'mate-menus-build' -i'gtk-layer-shell-build' . - - fi - before_scripts: - cd ${START_DIR} - - '[ -f mate-common-1.23.3.tar.xz ] || curl -Ls -o mate-common-1.23.3.tar.xz http://pub.mate-desktop.org/releases/1.23/mate-common-1.23.3.tar.xz' - - tar xf mate-common-1.23.3.tar.xz - - cd mate-common-1.23.3 + - '[ -f mate-common-1.24.1.tar.xz ] || curl -Ls -o mate-common-1.24.1.tar.xz https://github.com/mate-desktop/mate-common/releases/download/v1.24.1/mate-common-1.24.1.tar.xz' + - tar xf mate-common-1.24.1.tar.xz + - cd mate-common-1.24.1 - if [ ${DISTRO_NAME} == "debian" -o ${DISTRO_NAME} == "ubuntu" ];then - ./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu - else @@ -167,6 +155,18 @@ before_scripts: - ninja -C _build - ninja -C _build install +build_scripts: + - ./autogen.sh --enable-compile-warnings=maximum + - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum + - if [ $CPU_COUNT -gt 1 ]; then + - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT + - else + - scan-build $CHECKERS --keep-cc -o html-report make + - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude -i'mate-menus-build' -i'gtk-layer-shell-build' . + - fi + after_scripts: - make distcheck |