1
0
Fork 0

get queue prefix from URL params

This commit is contained in:
Mikhail Goncharov 2020-06-17 13:52:33 +02:00
parent 44b870c144
commit 9e3995bbe0
3 changed files with 3 additions and 3 deletions

View file

@ -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 = {

View file

@ -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 = {

View file

@ -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 = {