From e288f303f0839a09cc47bdb4b0ffefe950ac3cf4 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 2 Jun 2015 15:39:53 -0700 Subject: [PATCH] Add initial .travis.yml --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml 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: