update tests

This commit is contained in:
ILoveYaToo 2020-12-27 03:02:06 -05:00
parent 1478c74581
commit 1b6b127461

View File

@ -15,7 +15,7 @@ blocks:
- artifact pull workflow postal-alpine-container.tar - artifact pull workflow postal-alpine-container.tar
- docker load -i postal-alpine-container.tar - docker load -i postal-alpine-container.tar
- docker-compose up -d - docker-compose up -d
- for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; fi; sleep 15; done; - for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; else sleep 15; fi; done;
- artifact yank workflow postal-alpine-container.tar - artifact yank workflow postal-alpine-container.tar
- name: 'Ubuntu Test' - name: 'Ubuntu Test'
commands: commands:
@ -24,5 +24,5 @@ blocks:
- artifact pull workflow postal-ubuntu-container.tar - artifact pull workflow postal-ubuntu-container.tar
- docker load -i postal-ubuntu-container.tar - docker load -i postal-ubuntu-container.tar
- docker-compose up -d - docker-compose up -d
- for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; fi; sleep 15; done; - for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; else sleep 15; fi; done;
- artifact yank workflow postal-ubuntu-container.tar - artifact yank workflow postal-ubuntu-container.tar