Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit a23de1d

Browse files
rmistrySkia Commit-Bot
authored andcommitted
[Android compile bots] Make lunch target part of the GS file name
This is to make sure compile bots on the same change do not use the same name. NoTry: true Bug: skia:8560 Change-Id: I8de6a6831a84f26b62b89e2af80878b09e8ea8e4 Reviewed-on: https://skia-review.googlesource.com/c/173100 Commit-Queue: Ravi Mistry <rmistry@google.com> Reviewed-by: Eric Boren <borenet@google.com>
1 parent 9b0ba2c commit a23de1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

infra/bots/android_compile/trigger_wait_ac_task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ def _write_to_storage(task):
7474

7575
def _get_task_file_name(task):
7676
"""Returns the file name of the compile task. Eg: ${issue}-${patchset}.json"""
77-
return '%s-%s.json' % (task['issue'], task['patchset'])
77+
return '%s-%s-%s.json' % (task['lunch_target'], task['issue'],
78+
task['patchset'])
7879

7980

8081
# Checks to see if task already exists in Google storage.

0 commit comments

Comments
 (0)