Add org.centos.stage.* playbook for staging

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-02-25 14:29:02 +01:00
parent a73c3b4078
commit b6a5393afe
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,14 @@
---
- name: ci.dist-git-pr.test.complete
hosts: localhost
gather_facts: false
vars_files:
- "/srv/private/vars_loopabull.yml"
tasks:
- debug: var=msg
roles:
- {role: flag_ci_pr, msg: msg, state: "complete"}

View file

@ -0,0 +1,14 @@
---
- name: ci.dist-git-pr.test.error
hosts: localhost
gather_facts: false
vars_files:
- "/srv/private/vars_loopabull.yml"
tasks:
- debug: var=msg
roles:
- {role: flag_ci_pr, msg: msg, state: "error"}

View file

@ -0,0 +1,14 @@
---
- name: ci.dist-git-pr.test.running
hosts: localhost
gather_facts: false
vars_files:
- "/srv/private/vars_loopabull.yml"
tasks:
- debug: var=msg
roles:
- {role: flag_ci_pr, msg: msg, state: "running"}