diff options
author | raveit65 <[email protected]> | 2020-04-08 16:40:51 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-08 16:40:51 +0200 |
commit | c3e20b2aa829c1aa961e052423e5388b394c3eca (patch) | |
tree | b55158278eeb8b5adccf1dcb642ef3fa0cf012b3 | |
parent | 0820c6f9a271eb2cbf007d92354ed89f4bc248e5 (diff) | |
download | mate-control-center-c3e20b2aa829c1aa961e052423e5388b394c3eca.tar.bz2 mate-control-center-c3e20b2aa829c1aa961e052423e5388b394c3eca.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 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" |