diff options
author | Pablo Barciela <[email protected]> | 2020-03-02 11:29:57 +0100 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-03-02 23:30:21 +0100 |
commit | 71a5d115d16454d604f63184a56fe7b37cbfbe46 (patch) | |
tree | 050987490b049c5de52f64f5f1436ec8cee12f8d | |
parent | acf53d756951b97d610405f98c8d277e86d42ebb (diff) | |
download | caja-71a5d115d16454d604f63184a56fe7b37cbfbe46.tar.bz2 caja-71a5d115d16454d604f63184a56fe7b37cbfbe46.tar.xz |
Travis CI: build mate-desktop from 1.22 branch
-rw-r--r-- | .build.yml | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 |