diff options
author | Pablo Barciela <[email protected]> | 2019-06-10 08:48:57 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-06-17 21:50:30 +0200 |
commit | 2477ccbcc0f5eb42ac6dff426999b66e0cab6308 (patch) | |
tree | caf38861a283787373050bff9e35f67ddf7b89ae | |
parent | d5f981e9aeffcce889f8bfcd116c6bbcbcaaaaa5 (diff) | |
download | mate-power-manager-2477ccbcc0f5eb42ac6dff426999b66e0cab6308.tar.bz2 mate-power-manager-2477ccbcc0f5eb42ac6dff426999b66e0cab6308.tar.xz |
[ci] Fix build in debian1.20
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 62a3895..0ceed70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ install: - ./docker-build --name ${DISTRO} --config .travis.yml --install script: - - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build autotools + - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build scripts env: # - DISTRO="archlinux/base" @@ -118,11 +118,16 @@ requires: variables: - CFLAGS="-Wall -Werror=format-security" -before_scripts: +build_scripts: - if [ ${DISTRO_NAME} == "debian" ];then - - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh - - bash ./debian.sh + - ./autogen.sh --without-keyring + - else + - ./autogen.sh - fi after_scripts: + - if [ ${DISTRO_NAME} == "debian" ];then + - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh + - bash ./debian.sh + - fi - make distcheck |