diff options
author | Pablo Barciela <[email protected]> | 2020-04-03 15:59:11 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-03 17:51:30 +0200 |
commit | 92f36fa35ff4e29137f0b510120784d0a111feae (patch) | |
tree | 4a195e885f4a7ff2e582083d2adcb5704d3d6aa5 | |
parent | b67b9d7e7b632458584f27b5f895759c544752f4 (diff) | |
download | atril-92f36fa35ff4e29137f0b510120784d0a111feae.tar.bz2 atril-92f36fa35ff4e29137f0b510120784d0a111feae.tar.xz |
Travis CI: Fix build error with arch
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index cb005160..0b0b047b 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: @@ -21,13 +21,12 @@ script: deploy: - provider: script script: ./docker-build --verbose --config .build.yml --release github - skip_cleanup: true on: tags: true condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" env: - - DISTRO="archlinux/base" + - DISTRO="archlinux:latest" - DISTRO="debian:testing" - DISTRO="fedora:latest" - DISTRO="ubuntu:20.04" |