diff options
author | raveit65 <[email protected]> | 2020-04-06 14:31:18 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-06 14:31:18 +0200 |
commit | 4db6c0187f0ffaa8cf750be5af456050ef0fe272 (patch) | |
tree | 568caef1a3244fb40b62b6a5fbc4224784c19a1d /.travis.yml | |
parent | d959a0e448c05f84cef2ff43ad94695fb2acbc1e (diff) | |
download | marco-4db6c0187f0ffaa8cf750be5af456050ef0fe272.tar.bz2 marco-4db6c0187f0ffaa8cf750be5af456050ef0fe272.tar.xz |
ci: update build environment
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index cb005160..31ef220b 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" |