Closed
Bug 1351014
Opened 8 years ago
Closed 8 years ago
Implement symbol upload tasks as a graph morph
Categories
(Firefox Build System :: Task Configuration, task)
Firefox Build System
Task Configuration
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: dustin, Unassigned, Mentored)
References
Details
we have a symbol-upload task kind, with tasks created to depend on each build we perform -- for certain kinds of builds. These symbol-upload tasks basically just take an artifact from the build and upload it to the symbol server.
Hoewver, this gets a little complicated since we need to make sure those symbol-upload tasks are created whenever needed, but that we don't include them when the builds they depend on are not needed (for example, if they are optimized away).
We recently added support for "graph morphs" which occur after optimization is copmlete, and transform the whole taskgraph.
The idea here would be to implement a morph which will look for tasks containing `task.extra.symbol-upload` and create a dependent task that will actually perform the symbol upload, then delete the task.extra property from the parent task.
| Reporter | ||
Comment 1•8 years ago
|
||
Ted, given the recent changes to the symbol server, and the work we talked about today to add a symbol upload kind, does this make sense?
Flags: needinfo?(ted)
Comment 2•8 years ago
|
||
I'm not entirely sure! For non-try branches, symbol upload tasks should always be scheduled for nightly builds. That's the extent of what is implemented right now. If you ask for nightly builds on try, you can also get symbol uploads there.
What I'd like is to preserve that existing behavior, but also be able to schedule a symbol upload task for *any* build on a try push. Ideally this could be done at push time (by selecting the right tasks with `mach try fuzzy`) or after-the-fact by using Treeherder's "Add Jobs" UI.
When we discussed this on IRC this morning you suggested that we filter the tasks out in target task set selection. It looks like there's already code to do that:
https://dxr.mozilla.org/mozilla-central/rev/994a8d6eccbcdc6106794705bd77e3ac5f031be2/taskcluster/taskgraph/target_tasks.py#37
Flags: needinfo?(ted)
See Also: → 1437577
| Reporter | ||
Comment 3•8 years ago
|
||
OK -- if we do that, then it can't be in a morph. So tihs bug is invalid :)
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
Updated•7 years ago
|
Product: TaskCluster → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•