From 71a5d115d16454d604f63184a56fe7b37cbfbe46 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Mon, 2 Mar 2020 11:29:57 +0100 Subject: Travis CI: build mate-desktop from 1.22 branch --- .build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.build.yml b/.build.yml index 5e530c8b..e90229c4 100644 --- a/.build.yml +++ b/.build.yml @@ -48,6 +48,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/caja.git/ - git # Required to generate the ChangeLog file - gcc + - iso-codes-devel - make - redhat-rpm-config # The above packages is installed by 'dnf groupinstall build' @@ -94,6 +95,20 @@ requires: variables: - CFLAGS="-Wall -Werror=format-security" +before_scripts: + # Install mate-desktop from 1.22 branch + - cd ${START_DIR} + - git clone --depth 1 https://github.com/mate-desktop/mate-desktop.git -b 1.22 mate-desktop-1.22 + - cd mate-desktop-1.22 + - ./autogen.sh + - 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 -- cgit v1.2.1