Skip to content

Commit

Permalink
Add initial .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tianon committed Jun 2, 2015
1 parent fd23594 commit e288f30
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: bash

# for secret experimental features ;)
dist: trusty

env:
- VERSION=5.7
- VERSION=5.6
- VERSION=5.5

install:
- git clone https://github.com/docker-library/official-images.git ~/official-images

before_script:
- env | sort
- cd "$VERSION"
- image="mysql:$VERSION"

script:
- docker build -t "$image" .
- ~/official-images/test/run.sh "$image"

# vim:set et ts=2 sw=2:

0 comments on commit e288f30

Please sign in to comment.