summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-03-02 11:29:57 +0100
committerPablo Barciela <[email protected]>2020-03-02 23:30:21 +0100
commit71a5d115d16454d604f63184a56fe7b37cbfbe46 (patch)
tree050987490b049c5de52f64f5f1436ec8cee12f8d
parentacf53d756951b97d610405f98c8d277e86d42ebb (diff)
downloadcaja-71a5d115d16454d604f63184a56fe7b37cbfbe46.tar.bz2
caja-71a5d115d16454d604f63184a56fe7b37cbfbe46.tar.xz
Travis CI: build mate-desktop from 1.22 branch
-rw-r--r--.build.yml15
1 files changed, 15 insertions, 0 deletions
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