fixing conditionals in buildbot.tac to work with qa-stg
This commit is contained in:
parent
14b8411b17
commit
7eaac68686
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ import os
|
|||
from twisted.application import service
|
||||
from buildslave.bot import BuildSlave
|
||||
|
||||
{% if deployment_type in ['prod', 'stg', 'local'] %}
|
||||
{% if deployment_type in ['prod', 'stg', 'local', 'qa-stg'] %}
|
||||
basedir = r'/home/buildslave/slave'
|
||||
{% endif %}
|
||||
{% if deployment_type == 'dev' %}
|
||||
|
@ -34,7 +34,7 @@ except ImportError:
|
|||
|
||||
buildmaster_host = '{{ buildmaster }}'
|
||||
port = 9989
|
||||
{% if deployment_type in ['prod', 'stg', 'local'] %}
|
||||
{% if deployment_type in ['prod', 'stg', 'local', 'qa-stg'] %}
|
||||
slavename = '{{ buildslave_name }}'
|
||||
{% endif %}
|
||||
{% if deployment_type == 'dev' %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue