Skip to content

Commit

Permalink
TravisCI: sort PHP versions in descending order
Browse files Browse the repository at this point in the history
This way, more recent versions are built first.

Issue #27829
  • Loading branch information
dregad committed Jan 2, 2021
1 parent 67b3752 commit 0cb5e71
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Expand Up @@ -32,11 +32,11 @@ script:
#

php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
- 7.4
- 7.3
- 7.2
- 7.1

env:
- DB=mysql
Expand All @@ -45,16 +45,16 @@ env:
jobs:
include:
# Use 'xenial' build environment for legacy PHP versions
- php: 5.6
- php: 7.0
dist: xenial
env: DB=mysql
- php: 5.6
- php: 7.0
dist: xenial
env: DB=pgsql
- php: 7.0
- php: 5.6
dist: xenial
env: DB=mysql
- php: 7.0
- php: 5.6
dist: xenial
env: DB=pgsql

Expand Down

0 comments on commit 0cb5e71

Please sign in to comment.