From 14fce6f47cebae7c21b0a5f4d62409e047027187 Mon Sep 17 00:00:00 2001 From: Wu Xiaotian Date: Wed, 6 Feb 2019 09:33:49 +0800 Subject: Test the new docker-build --- .travis.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6e63785..52f64dfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,6 @@ language: bash services: - docker -# Use travis branch for test. -#branches: -# only: -# - travis - before_install: - curl -L -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/travis/travis/docker-build - chmod +x docker-build @@ -137,19 +132,22 @@ variables: before_scripts: - cd ${START_DIR} - - if [ ! -d mate-menus-build ]; then git clone --depth 1 https://github.com/mate-desktop/mate-menus.git mate-menus-build;fi + - if [ ! -d mate-menus-build ]; then + - git clone --depth 1 https://github.com/mate-desktop/mate-menus.git mate-menus-build + - fi - cd mate-menus-build - - ./autogen.sh - if [ ${DISTRO_NAME} == "debian" -o ${DISTRO_NAME} == "ubuntu" ];then - - ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu > /dev/null 2>&1 + - ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu - else - - ./autogen.sh --prefix=/usr > /dev/null 2>&1 + - ./autogen.sh --prefix=/usr + - fi + - if [ ${TRAVIS} == "false" ]; then + - make clean - fi - - if [ ${TRAVIS} == "false" ]; then make clean; fi - - make > /dev/null 2>&1 - - make install > /dev/null 2>&1 + - make + - make install after_scripts: - - make distcheck > /dev/null + - make distcheck # Just look at the error output and return 0 always. - - 'if [ $? -ne 0 ];then RED="\033[0;31m"; NC="\033[0m"; printf "${RED}!!! ERROR: Run make distcheck failed.${NC}\n"; fi' + - 'if [ $? -ne 0 ];then RED="\033[0;31m"; ENDC="\033[0m"; printf "${RED}!!! ERROR: Run make distcheck failed.${ENDC}\n"; fi' -- cgit v1.2.1