diff options
author | raveit65 <[email protected]> | 2020-04-09 14:10:54 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-09 14:10:54 +0200 |
commit | ce06067c14144137e177c8a444bbdfe5dd268d46 (patch) | |
tree | 0b5fbab0461a2be9681bf737f4668261f2baf5c8 | |
parent | 9f66821eeef349049e3788e904573c0e519ab2ed (diff) | |
download | mate-media-ce06067c14144137e177c8a444bbdfe5dd268d46.tar.bz2 mate-media-ce06067c14144137e177c8a444bbdfe5dd268d46.tar.xz |
ci: build with mate-common-1.24.1 tarball
-rw-r--r-- | .build.yml | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -90,6 +90,20 @@ variables: -enable-checker alpha.core.FixedAddr -enable-checker security.insecureAPI.strcpy"' +before_scripts: + # Install mate-common fron tarball + - cd ${START_DIR} + - '[ -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 + - ./configure --prefix=/usr + - fi + - make + - make install + build_scripts: - ./autogen.sh --enable-compile-warnings=maximum - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum @@ -102,20 +116,6 @@ build_scripts: - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - fi -before_scripts: - # Install mate-common fron tarball - - 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 - - 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 - - ./configure --prefix=/usr - - fi - - make - - make install - after_scripts: - make distcheck |