Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Travis-CI: upgrade to Ubuntu 18.04 and latest releases of Python and …
…Ruby

* Test Python 3.8 and Pypy3 3.6-7.2.0
* Test Ruby 2.7
* Drop Ruby 2.2 and 2.3 (they are not supported with Ubuntu 18.04 in
  https://rubies.travis-ci.org/)
* While at it, replace deprecated libdbus-glib-1-dev with libglib2.0-dev
  now that restorecond has been upgraded.

Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
Acked-by: Petr Lautrbach <plautrba@redhat.com>
  • Loading branch information
fishilico authored and bachradsusi committed May 6, 2020
1 parent 7c73601 commit 6950ee0
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .travis.yml
Expand Up @@ -11,33 +11,33 @@ compiler:
env:
matrix:
# Test the last version of Python and Ruby together, with some linkers
- PYVER=python3.7 RUBYLIBVER=2.6
- PYVER=python3.7 RUBYLIBVER=2.6 TEST_FLAGS_OVERRIDE=1
- PYVER=python3.7 RUBYLIBVER=2.6 TEST_DEBUG=1
- PYVER=python3.7 RUBYLIBVER=2.6 LINKER=gold
- PYVER=python3.7 RUBYLIBVER=2.6 LINKER=bfd

# Test several Python versions
- PYVER=python3.5 RUBYLIBVER=2.6
- PYVER=python3.6 RUBYLIBVER=2.6
- PYVER=pypy3.5-6.0 RUBYLIBVER=2.6
- PYVER=python3.8 RUBYLIBVER=2.7
- PYVER=python3.8 RUBYLIBVER=2.7 TEST_FLAGS_OVERRIDE=1
- PYVER=python3.8 RUBYLIBVER=2.7 TEST_DEBUG=1
- PYVER=python3.8 RUBYLIBVER=2.7 LINKER=gold
- PYVER=python3.8 RUBYLIBVER=2.7 LINKER=bfd

# Test several Python versions (https://docs.travis-ci.com/user/languages/python/#python-versions)
- PYVER=python3.5 RUBYLIBVER=2.7
- PYVER=python3.6 RUBYLIBVER=2.7
- PYVER=python3.7 RUBYLIBVER=2.7
- PYVER=pypy3.6-7.2.0 RUBYLIBVER=2.7

# Test several Ruby versions (http://rubies.travis-ci.org/)
- PYVER=python3.7 RUBYLIBVER=2.5.1
- PYVER=python3.7 RUBYLIBVER=2.4
- PYVER=python3.7 RUBYLIBVER=2.3
- PYVER=python3.7 RUBYLIBVER=2.2
- PYVER=python3.8 RUBYLIBVER=2.6
- PYVER=python3.8 RUBYLIBVER=2.5.1
- PYVER=python3.8 RUBYLIBVER=2.4

matrix:
exclude:
- compiler: clang
env: PYVER=python3.7 RUBYLIBVER=2.6 LINKER=gold
env: PYVER=python3.8 RUBYLIBVER=2.7 LINKER=gold
- compiler: clang
env: PYVER=python3.7 RUBYLIBVER=2.6 LINKER=bfd
env: PYVER=python3.8 RUBYLIBVER=2.7 LINKER=bfd

# Use Travis-CI Ubuntu 16.04 Xenial Xerus infrastructure, "full image" variant
# Use Travis-CI Ubuntu 18.04 Bionic Beaver, "full image" variant
sudo: required
dist: xenial
dist: bionic

# Install SELinux userspace utilities dependencies
addons:
Expand All @@ -52,7 +52,7 @@ addons:
- libcap-dev
- libcap-ng-dev # This package is not whitelisted for the container infrastructure (https://github.com/travis-ci/apt-package-whitelist/issues/1096)
- libcunit1-dev
- libdbus-glib-1-dev
- libglib2.0-dev
- libpcre3-dev
- patch
- python3-dev
Expand All @@ -78,7 +78,7 @@ install:
# Download the required python version if it is not installed
- VIRTUAL_ENV="$HOME/virtualenv/$PYVER"
- if ! [ -d "$VIRTUAL_ENV" ] ; then
curl --retry 10 -o python.tar.bz2 "https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/16.04/x86_64/${PYVER/python/python-}.tar.bz2" &&
curl --retry 10 -o python.tar.bz2 "https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/18.04/x86_64/${PYVER/python/python-}.tar.bz2" &&
sudo tar xjf python.tar.bz2 --directory / &&
rm python.tar.bz2 ;
fi
Expand Down

0 comments on commit 6950ee0

Please sign in to comment.