1
0
Fork 0
mirror of https://github.com/docker-library/ruby.git synced 2022-11-09 11:41:34 -05:00
docker-library--ruby/.travis.yml

32 lines
842 B
YAML
Raw Normal View History

2015-04-02 17:14:02 -04:00
language: bash
# for secret experimental features ;)
dist: trusty
env:
- VERSION=2.2 VARIANT=
- VERSION=2.2 VARIANT=slim
- VERSION=2.2 VARIANT=wheezy
- VERSION=2.1 VARIANT=
- VERSION=2.1 VARIANT=slim
- VERSION=2.1 VARIANT=wheezy
- VERSION=2.0 VARIANT=
- VERSION=2.0 VARIANT=slim
- VERSION=2.0 VARIANT=wheezy
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VERSION"
- image="$(awk '$1 == "FROM" { print $2; exit }' onbuild/Dockerfile)${VARIANT:+-$VARIANT}"
script:
- docker build -t "$image" "${VARIANT:-.}"
- ~/official-images/test/run.sh "$image"
# the "onbuild" variant has to happen with the base variant because it's FROM it
- true && [ "$VARIANT" ] || docker build -t "${image}-onbuild" onbuild
# vim:set et ts=2 sw=2: