Update Semaphore configuration

This commit is contained in:
PrincessOfCats 2020-12-27 06:25:00 +00:00
parent b65c1d873e
commit 9548083752
2 changed files with 35 additions and 1 deletions

15
.semaphore/pipeline_2.yml Normal file
View File

@ -0,0 +1,15 @@
version: v1.0
name: Pipeline 2
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: Test (Alpine)
task:
jobs:
- name: 'Job #1'
commands:
- cd alpine
- docker-compose up -d
- 'for i in {1..20}; do [ $(docker inspect postal | jq ''.[].State.Health.Status'') == "healthy" ] && break || sleep 15; done'

View File

@ -5,9 +5,28 @@ agent:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: 'Block #1'
- name: Build (Alpine)
task:
jobs:
- name: 'Job #1'
commands:
- checkout
- cd alpine
- 'docker build --network=host -t catdeployed/postal:alpine .'
skip:
when: branch != master
- name: Build (Ubuntu)
skip:
when: branch != master
task:
jobs:
- name: 'Job #1'
commands:
- checkout
- cd alpine
- 'docker build --network=host -t catdeployed/postal:alpine .'
promotions:
- name: Default Promotion
pipeline_file: pipeline_2.yml
auto_promote:
when: branch = 'master' AND result = 'passed'