diff options
author | raveit65 <[email protected]> | 2020-04-03 19:18:02 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-03 19:18:02 +0200 |
commit | 51cfe1e6670f8b283d59ce2e188633c62004482d (patch) | |
tree | 72f9de43e2e9021160e95666b185d5667227eddd /.travis.yml | |
parent | 9b1987da3c459dcc23ed003512df9651cf0c5566 (diff) | |
download | caja-51cfe1e6670f8b283d59ce2e188633c62004482d.tar.bz2 caja-51cfe1e6670f8b283d59ce2e188633c62004482d.tar.xz |
Travis CI: update travis.yml
- fix build error with archlinux on Travis CI
- Avoid warning for build config validation
- change archlinux docker image name
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index fbbcf89d..28934cf1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,16 @@ # vim: set ts=2 sts=2 sw=2 expandtab : -dist: xenial +dist: bionic sudo: required -language: bash +language: shell +os: linux services: - docker +addons: + apt: + packages: + - python3-github + branches: except: - gh-pages @@ -15,9 +21,6 @@ before_install: - chmod +x docker-build gen-index 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: @@ -36,7 +39,6 @@ deploy: condition: ${DISTRO} =~ ^fedora.*$ - provider: script script: ./docker-build --verbose --config .build.yml --release github - skip_cleanup: true on: tags: true condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" @@ -53,7 +55,7 @@ after_success: fi' env: - - DISTRO="archlinux/base" + - DISTRO="archlinux:latest" - DISTRO="debian:testing" - DISTRO="fedora:latest" - DISTRO="ubuntu:devel" |