2020-12-27 07:25:00 +01:00
version : v1.0
name : Pipeline 2
agent :
machine :
type : e1-standard-2
os_image : ubuntu1804
blocks :
2020-12-27 07:57:55 +01:00
- name : Test
2020-12-27 07:25:00 +01:00
task :
jobs :
2020-12-27 07:57:55 +01:00
- name : 'Alpine Test'
2020-12-27 07:25:00 +01:00
commands :
2020-12-27 07:42:01 +01:00
- checkout
2020-12-27 07:25:00 +01:00
- cd alpine
2020-12-27 08:28:26 +01:00
- artifact pull workflow postal-alpine-container.tar
2020-12-27 08:18:20 +01:00
- docker load -i postal-alpine-container.tar
2020-12-27 07:25:00 +01:00
- docker-compose up -d
2020-12-27 09:10:11 +01:00
- for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; elif [[ $i -eq 20 ]]; then exit 1; else sleep 15; fi; done;
2020-12-27 08:28:26 +01:00
- artifact yank workflow postal-alpine-container.tar
2020-12-27 07:57:55 +01:00
- name : 'Ubuntu Test'
2020-12-27 07:30:34 +01:00
commands :
2020-12-27 07:42:01 +01:00
- checkout
2020-12-27 07:30:34 +01:00
- cd ubuntu
2020-12-27 08:28:26 +01:00
- artifact pull workflow postal-ubuntu-container.tar
2020-12-27 08:18:20 +01:00
- docker load -i postal-ubuntu-container.tar
2020-12-27 07:30:34 +01:00
- docker-compose up -d
2020-12-27 09:10:11 +01:00
- for i in {1..20}; do if [[ $(docker inspect postal | jq '.[].State.Health.Status') == "healthy" ]]; then break; elif [[ $i -eq 20 ]]; then exit 1; else sleep 15; fi; done;
2020-12-27 08:28:26 +01:00
- artifact yank workflow postal-ubuntu-container.tar