diff options
author | Wu Xiaotian <[email protected]> | 2020-04-06 14:17:47 +0800 |
---|---|---|
committer | ZenWalker <[email protected]> | 2020-04-06 13:18:14 +0200 |
commit | 5471a79fc92949424ecf22ac00de5b867593c0e5 (patch) | |
tree | 83ff877992ad97e910041d5dc72c680d118a08f3 | |
parent | 247a84fb2e64f6847d70d7b26ab0043382dd22e0 (diff) | |
download | mate-backgrounds-5471a79fc92949424ecf22ac00de5b867593c0e5.tar.bz2 mate-backgrounds-5471a79fc92949424ecf22ac00de5b867593c0e5.tar.xz |
[ci] avoid deprecated skip_clean
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 38edecf..24272b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,19 @@ # 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 +21,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:devel" |