diff options
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -67,6 +67,7 @@ requires: fedora: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-control-center.git + - autoconf-archive - accountsservice-devel - cairo-gobject-devel - clang @@ -159,6 +160,17 @@ variables: 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 + - cd ${START_DIR} - if [ ! -f mate-desktop-1.23.2.tar.xz ];then - curl -Ls -o mate-desktop-1.23.2.tar.xz https://github.com/mate-desktop/mate-desktop/releases/download/v1.23.2/mate-desktop-1.23.2.tar.xz - fi @@ -195,7 +207,7 @@ before_scripts: - chmod +x /usr/bin/gla11y build_scripts: - - ./autogen.sh --enable-compile-warnings=maximum + - ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - scan-build $CHECKERS --keep-cc -o html-report make -j $(( $CPU_COUNT + 1 )) - if [ ${DISTRO_NAME} == "debian" ];then |