get queue prefix from URL params
This commit is contained in:
parent
44b870c144
commit
9e3995bbe0
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ import yaml
|
|||
|
||||
if __name__ == '__main__':
|
||||
script_branch = os.getenv("scripts_branch", "master")
|
||||
queue_prefix = os.getenv("BUILDKITE_AGENT_META_DATA_QUEUE_PREFIX", "")
|
||||
queue_prefix = os.getenv("ph_queue_prefix", "")
|
||||
diff_id = os.getenv("ph_buildable_diff", "")
|
||||
steps = []
|
||||
linux_buld_step = {
|
||||
|
|
|
@ -18,7 +18,7 @@ import yaml
|
|||
|
||||
if __name__ == '__main__':
|
||||
script_branch = os.getenv("scripts_branch", "master")
|
||||
queue_prefix = os.getenv("BUILDKITE_AGENT_META_DATA_QUEUE_PREFIX", "")
|
||||
queue_prefix = os.getenv("ph_queue_prefix", "")
|
||||
diff_id = os.getenv("ph_buildable_diff", "")
|
||||
steps = []
|
||||
linux_buld_step = {
|
||||
|
|
|
@ -17,7 +17,7 @@ import os
|
|||
import yaml
|
||||
|
||||
if __name__ == '__main__':
|
||||
queue_prefix = os.getenv("BUILDKITE_AGENT_META_DATA_QUEUE_PREFIX", "")
|
||||
queue_prefix = os.getenv("ph_queue_prefix", "")
|
||||
diff_id = os.getenv("ph_buildable_diff")
|
||||
steps = []
|
||||
create_branch_step = {
|
||||
|
|
Loading…
Reference in a new issue