remove unrequired touch

This commit is contained in:
ILoveYaToo 2020-05-20 00:17:29 -04:00
parent 5df19e5051
commit d76652a147

View File

@ -33,7 +33,6 @@ test-docker-ubuntu:
stage: tests
script:
- cd ubuntu
- touch config/postal.yaml
- docker load -i postal-ubuntu-container.tar
- docker-compose up -d
- for i in {1..20}; do [ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ] && break || sleep 15; done
@ -45,7 +44,6 @@ test-docker-alpine:
stage: tests
script:
- cd alpine
- touch config/postal.yaml
- docker load -i postal-alpine-container.tar
- docker-compose up -d
- for i in {1..20}; do [ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ] && break || sleep 15; done