Skip to content

Commit

Permalink
travis: Add dummy var to destinguish distro on build status page.
Browse files Browse the repository at this point in the history
Also enables mysql (for Xenial needs to be explicitly specified)
  • Loading branch information
kabalin committed May 1, 2019
1 parent b710385 commit 843ac56
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,25 @@ cache:
directories:
- $HOME/cachedir

services:
- mysql

php:
- 7.1

matrix:
include:
- dist: xenial
env: TEST_SUITE="0-*"
env: TEST_SUITE="0-*" DIST="xenial"
- dist: xenial
env: TEST_SUITE="1-*"
env: TEST_SUITE="1-*" DIST="xenial"
- dist: xenial
env: TEST_SUITE="2-*"
env: TEST_SUITE="2-*" DIST="xenial"

env:
- TEST_SUITE="0-*"
- TEST_SUITE="1-*"
- TEST_SUITE="2-*"
- TEST_SUITE="0-*" DIST="trusty"
- TEST_SUITE="1-*" DIST="trusty"
- TEST_SUITE="2-*" DIST="trusty"

install:
- git clone --depth 1 https://github.com/sstephenson/bats.git $HOME/bats
Expand Down

0 comments on commit 843ac56

Please sign in to comment.