Skip to content

Commit 2a2b721

Browse files
committed
Merge pull request #73 from infosiftr/travis
Add initial .travis.yml
2 parents fd23594 + e288f30 commit 2a2b721

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: bash
2+
3+
# for secret experimental features ;)
4+
dist: trusty
5+
6+
env:
7+
- VERSION=5.7
8+
- VERSION=5.6
9+
- VERSION=5.5
10+
11+
install:
12+
- git clone https://github.com/docker-library/official-images.git ~/official-images
13+
14+
before_script:
15+
- env | sort
16+
- cd "$VERSION"
17+
- image="mysql:$VERSION"
18+
19+
script:
20+
- docker build -t "$image" .
21+
- ~/official-images/test/run.sh "$image"
22+
23+
# vim:set et ts=2 sw=2:

0 commit comments

Comments
 (0)