| author | James Graham <james@hoppipolla.co.uk> |
| Tue, 07 Jul 2015 10:02:45 +0100 | |
| changeset 251733 | c0b8fea5aef4815a69f3a181ce6ba5c8d1cd48c7 |
| parent 251732 | 6c63704664eb2cd25ee073a5dd8f8662f5a857c5 |
| child 251734 | c53ff7cfd5ec01f724710d4401b88f61fcb506b5 |
| push id | 29007 |
| push user | ryanvm@gmail.com |
| push date | Tue, 07 Jul 2015 18:38:06 +0000 |
| treeherder | mozilla-central@9340658848d1 [default view] [failures only] |
| perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
| reviewers | Ms2ger |
| bugs | 1180500 |
| milestone | 42.0a1 |
| first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/web-platform/update/upstream.py +++ b/testing/web-platform/update/upstream.py @@ -87,21 +87,21 @@ class CheckoutBranch(Step): """Create a branch in the sync tree pointing at the last upstream sync commit and check it out""" provides = ["branch"] def create(self, state): self.logger.info("Updating sync tree from %s" % state.sync["remote_url"]) state.branch = state.sync_tree.unique_branch_name( - "outbound_update_%s" % state.test_manifest.rev) + "outbound_update_%s" % state.old_manifest.rev) state.sync_tree.update(state.sync["remote_url"], state.sync["branch"], state.branch) - state.sync_tree.checkout(state.test_manifest.rev, state.branch, force=True) + state.sync_tree.checkout(state.old_manifest.rev, state.branch, force=True) class GetLastSyncCommit(Step): """Find the gecko commit at which we last performed a sync with upstream.""" provides = ["last_sync_path", "last_sync_commit"] def create(self, state):