diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..a47875fba --- /dev/null +++ b/.travis.yml @@ -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: