Improve and add more tests

This commit is contained in:
Joe Groocock 2017-08-09 14:21:41 +01:00
parent e5bacfc0e4
commit 66d505e992

View File

@ -16,11 +16,14 @@ pipeline:
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- docker run -tt --rm devbuild /bin/busybox
- docker run -tt --rm devbuild /bin/sh -c 'test -f /lib/libc-*.so'
- export RESULT=$(docker run --name=DEV --rm devbuild /bin/sh -c 'echo This is a test string | md5sum | cut -f1 -d\ ' )
- echo $RESULT
- test $RESULT = 'b584c39f97dfe71ebceea3fdb860ed6c'
- docker pull adamant/busybox
- docker tag adamant/busybox devbuild
- set -ax
- docker run --rm devbuild /bin/sh -xec 'true'
- docker run --rm devbuild /bin/sh -xec 'test -f /lib/libc-*.so'
- docker run --rm devbuild /bin/sh -xec 'nslookup google.com'
- test "$(docker run --rm devbuild /bin/sh -xec 'date +%Z')" = 'UTC'
- test "$(docker run --rm devbuild /bin/sh -xec 'echo This is a test string | md5sum | cut -f1 -d\ ' | tee /dev/stderr)" = 'b584c39f97dfe71ebceea3fdb860ed6c'
publish:
image: docker