diff options
author | Pablo Barciela <[email protected]> | 2020-04-07 00:35:44 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-07 00:44:53 +0200 |
commit | e563c0c4a3d82b3dbe887a80037b6a7e8fa926b1 (patch) | |
tree | 6f956d0c75a605192f6d6b7db046b2a2d057d0fa | |
parent | c607170ca5e940ef731208a6d4309c1a152f6bd4 (diff) | |
download | mate-themes-e563c0c4a3d82b3dbe887a80037b6a7e8fa926b1.tar.bz2 mate-themes-e563c0c4a3d82b3dbe887a80037b6a7e8fa926b1.tar.xz |
Travis CI: Fix build error with arch
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 161bc0f6..757a2de3 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: @@ -20,14 +20,14 @@ script: deploy: - provider: script + edge: true 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" |