diff options
author | raveit65 <[email protected]> | 2020-04-02 13:10:53 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-02 14:06:10 +0200 |
commit | 32dd1b96da0b78063ee93acd067a1e546d38efe0 (patch) | |
tree | 384caef712b2027adf67de46c39d3cd7561e0ed6 /.build.yml | |
parent | 735e4a88d80d23a305d4a2d4d70f11b3e7dff0ed (diff) | |
download | mate-desktop-32dd1b96da0b78063ee93acd067a1e546d38efe0.tar.bz2 mate-desktop-32dd1b96da0b78063ee93acd067a1e546d38efe0.tar.xz |
Travis CI: build with mate-common-1.24.1 tarball
add missing requires autoconf-archive (fedora)
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -45,6 +45,7 @@ requires: fedora: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-desktop.git + - autoconf-archive - cairo-gobject-devel - clang-analyzer - clang @@ -104,6 +105,19 @@ variables: -enable-checker alpha.core.FixedAddr -enable-checker security.insecureAPI.strcpy"' +before_scripts: + - 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: # build failed with f30 und using clang patch, fixed in f30? # - if [ ${DISTRO_NAME} == "fedora" ];then |