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 twisted.application import service
|
||||||
from buildslave.bot import BuildSlave
|
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'
|
basedir = r'/home/buildslave/slave'
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if deployment_type == 'dev' %}
|
{% if deployment_type == 'dev' %}
|
||||||
|
@ -34,7 +34,7 @@ except ImportError:
|
||||||
|
|
||||||
buildmaster_host = '{{ buildmaster }}'
|
buildmaster_host = '{{ buildmaster }}'
|
||||||
port = 9989
|
port = 9989
|
||||||
{% if deployment_type in ['prod', 'stg', 'local'] %}
|
{% if deployment_type in ['prod', 'stg', 'local', 'qa-stg'] %}
|
||||||
slavename = '{{ buildslave_name }}'
|
slavename = '{{ buildslave_name }}'
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if deployment_type == 'dev' %}
|
{% if deployment_type == 'dev' %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue