summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-03-21 01:11:20 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-03-30 11:31:53 +0200
commit6e66413614e1f8e5bdd0661bfa1350cea10f35d5 (patch)
tree9761ea91c6a49e777bb634cbc7beb6a5656d6a38 /.travis.yml
parent707cb643ba08dc8e8a657b102cdda1a4d734486a (diff)
Upgrade Travis CI Ubuntu images from Xenial to Bionic
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index b51f5d3657..705a359078 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,7 @@ jobs:
- name: pre-commit
if: type != pull_request
os: linux
- dist: xenial
+ dist: bionic
language: python
python: 3.7
# There are too many files in the repo that have formatting issues. We'll
@@ -39,7 +39,7 @@ jobs:
- name: pre-commit-pr
if: type == pull_request
os: linux
- dist: xenial
+ dist: bionic
language: python
python: 3.7
cache:
@@ -53,9 +53,9 @@ jobs:
- name: Ubuntu/gcc/SCons build
os: linux
- dist: xenial
+ dist: bionic
compiler: gcc
- # Ubuntu Xenial build prerequisites
+ # Ubuntu Bionic build prerequisites
before_install:
- sudo apt-get install -y scons
install:
@@ -68,10 +68,10 @@ jobs:
- name: Ubuntu/gcc/CMake build
os: linux
- dist: xenial
+ dist: bionic
compiler: gcc
cache: ccache
- # Ubuntu Xenial build prerequisites
+ # Ubuntu Bionic build prerequisites
env: CMAKEFLAGS_EXTRA="-DLOCALECOMPARE=ON"
before_install:
- export CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)"