author | Dustin J. Mitchell <dustin@mozilla.com> |
Tue, 13 Sep 2016 19:44:04 +0000 | |
changeset 313808 | 82d0a583a9a39bf0b0000bccbf6d5c9ec2596bcc |
parent 313807 | 2494e1f32e5595a6c4b65aba2daf283c3d12e337 |
child 313809 | d8f95b350aa20d96a572fa0ff94a6eb08e2c1a61 |
child 313821 | 8a996d7c71a2e20e3c01c1f555232f1e3830cee1 |
child 313827 | 2c34737c57e5f47d981d79eacb447732b90dbb29 |
push id | 32255 |
push user | ryanvm@gmail.com |
push date | Wed, 14 Sep 2016 00:47:02 +0000 |
treeherder | autoland@d8f95b350aa2 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | gps, KWierso |
bugs | 1286075 |
milestone | 51.0a1 |
first release with | nightly linux32
82d0a583a9a3
/
51.0a1
/
20160914030200
/
files
nightly linux64
82d0a583a9a3
/
51.0a1
/
20160914030200
/
files
nightly mac
82d0a583a9a3
/
51.0a1
/
20160914030200
/
files
nightly win32
82d0a583a9a3
/
51.0a1
/
20160914030200
/
files
nightly win64
82d0a583a9a3
/
51.0a1
/
20160914030200
/
files
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
51.0a1
/
20160914030200
/
pushlog to previous
nightly linux64
51.0a1
/
20160914030200
/
pushlog to previous
nightly mac
51.0a1
/
20160914030200
/
pushlog to previous
nightly win32
51.0a1
/
20160914030200
/
pushlog to previous
nightly win64
51.0a1
/
20160914030200
/
pushlog to previous
|
--- a/taskcluster/taskgraph/task/transform.py +++ b/taskcluster/taskgraph/task/transform.py @@ -83,18 +83,18 @@ class TransformTask(base.Task): def get_dependencies(self, taskgraph): return [(label, name) for name, label in self.dependencies.items()] def optimize(self, params): if 'files-changed' in self.when: changed = files_changed.check( params, self.when['files-changed']) if not changed: - logger.debug('no files found matching a pattern in `when.files-changed` for ' - + self.label) + logger.debug('no files found matching a pattern in `when.files-changed` for ' + + self.label) return True, None return False, None @classmethod def from_json(cls, task_dict): # when reading back from JSON, we lose the "when" information task_dict['when'] = {} return cls(task_dict['attributes']['kind'], task_dict)