8000 Lock Travis distro so new defaults will not break the build by clue · Pull Request #26 · reactphp/promise-timer · GitHub
[go: up one dir, main page]

Skip to content

Lock Travis distro so new defaults will not break the build #26

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

Merged
merged 3 commits into from
Aug 7, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Update Travis distro to precise, except for legacy PHP
  • Loading branch information
clue committed Aug 7, 2017
commit 247796a1d5f9a33278be90cdfb2ae4083604005a
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
language: php

php:
- 5.3
# - 5.3 # requires old distro, see below
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- hhvm # ignore errors, see below

# lock distro so new future defaults will not break the build
dist: precise
dist: trusty

# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
- php: 5.3
dist: precise
allow_failures:
- php: hhvm

Expand Down
0