summaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2020-04-08 16:29:52 +0200
committerraveit65 <[email protected]>2020-04-08 16:29:52 +0200
commitae1bab3564a58e7a1214f526736b90682a60a007 (patch)
tree7f906b4a14b8ef18568136aec0308ffaec924995 /.build.yml
parent07ed93c1387bc4c72d13a202cbaf138a451e3f22 (diff)
downloadmate-control-center-ae1bab3564a58e7a1214f526736b90682a60a007.tar.bz2
mate-control-center-ae1bab3564a58e7a1214f526736b90682a60a007.tar.xz
ci: build with mate-common-1.24.1 tarball
- don't use --enable-compile-warnings=maximum with autogen.sh
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml14
1 files changed, 13 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 8b751bb9..4d1bbf6a 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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