diff options
author | raveit65 <[email protected]> | 2020-04-06 12:39:06 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-06 12:39:06 +0200 |
commit | 222463186160f6ecf2a9a257b3129d12688082f6 (patch) | |
tree | efcb943d665a1a074de6917f1fc6e4a6f5cd74bf | |
parent | 2b8993cefc1f514f697f7cd6e633fed9307ae396 (diff) | |
download | mate-settings-daemon-222463186160f6ecf2a9a257b3129d12688082f6.tar.bz2 mate-settings-daemon-222463186160f6ecf2a9a257b3129d12688082f6.tar.xz |
ci: update build environment
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index cb00516..31ef220 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:20.04" |