postal/.semaphore/semaphore.yml
2020-12-27 01:57:55 -05:00

26 lines
601 B
YAML

version: v1.0
name: Initial Pipeline
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: Build
task:
jobs:
- name: 'Alpine'
commands:
- checkout
- cd alpine
- 'docker build --network=host -t catdeployed/postal:alpine .'
- name: 'Ubuntu'
commands:
- checkout
- cd ubuntu
- 'docker build --network=host -t catdeployed/postal:ubuntu .'
promotions:
- name: Default Promotion
pipeline_file: tests.yml
auto_promote:
when: result = 'passed'