Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis: change from "trusty" to "xenial" #500

Merged
merged 1 commit into from
Jul 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: php
os: linux
dist: trusty
dist: xenial

env:
# `master` is now 3.x.
Expand All @@ -13,8 +13,6 @@ cache:
- $HOME/.cache/composer/files

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
Expand Down Expand Up @@ -69,6 +67,20 @@ jobs:
# Run PHPCS against VIPCS.
- ./bin/phpcs

# Builds which need a different distro.
- stage: test
- php: 5.5
dist: trusty
env: PHPCS_BRANCH="dev-master"
- php: 5.5
dist: trusty
env: PHPCS_BRANCH="3.5.5"
- php: 5.4
dist: trusty
env: PHPCS_BRANCH="dev-master"
- php: 5.4
dist: trusty
env: PHPCS_BRANCH="3.5.5"

before_install:
# Speed up build time by disabling Xdebug.
Expand Down