in mozregression/fetch_configs.py [0:0]
def tk_routes(self, push):
tk_name = self.tk_name
if tk_name == "android-api-11":
if push.timestamp >= TIMESTAMP_GECKOVIEW_ARM:
tk_name = "android-arm"
elif push.timestamp >= TIMESTAMP_FENNEC_API_16:
tk_name = "android-api-16"
elif push.timestamp >= TIMESTAMP_FENNEC_API_15:
tk_name = "android-api-15"
for build_type in self.build_types:
yield "gecko.v2.{}{}.revision.{}.mobile.{}-{}".format(
self.integration_branch,
".shippable" if build_type == "shippable" else "",
push.changeset,
tk_name,
"opt" if build_type == "shippable" else build_type,
)
self._inc_used_build()
return