diff options
author | Pablo Barciela <[email protected]> | 2020-04-04 16:22:28 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-04 16:49:27 +0200 |
commit | 8774ccb1ee95bedc6de839f31a92ea0eb4872032 (patch) | |
tree | dd22523ea77d631a2cbb90a8a5af321f0201d5e1 | |
parent | d3b4977bf88f378170d37e5dc1d50ac6783779ff (diff) | |
download | python-caja-8774ccb1ee95bedc6de839f31a92ea0eb4872032.tar.bz2 python-caja-8774ccb1ee95bedc6de839f31a92ea0eb4872032.tar.xz |
Travis CI: Fix build error with arch
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index cb00516..678ce49 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,18 @@ -# vim: set ts=2 sts=2 sw=2 expandtab : -dist: xenial -sudo: required -language: bash +dist: bionic +language: shell +os: linux services: - docker +addons: + apt: + packages: + - python3-github before_install: - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build - chmod +x docker-build install: - - sudo apt-get install -y python3-pip python3-setuptools - - sudo pip3 install --upgrade pip - - sudo pip install PyGithub - ./docker-build --name ${DISTRO} --config .build.yml --install script: @@ -27,7 +27,7 @@ deploy: condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" env: - - DISTRO="archlinux/base" + - DISTRO="archlinux:latest" - DISTRO="debian:testing" - DISTRO="fedora:latest" - DISTRO="ubuntu:20.04" |