- 24 Mar, 2017 5 commits
-
-
Bruce Dawson authored
VS 2017 has been released and needs to be packaged so that we can experiment with building with it. This is an initial pass at updating the packaging script. The file layout has changed significantly in VS 2017. Compatibility with VS 2013 and VS 2015 has, I believe, been maintained but it is not important enough to merit significant testing. BUG=683729 Change-Id: I68e5a8d9fd389132b641743dbc070108497f54cb Reviewed-on: https://chromium-review.googlesource.com/457153 Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Reviewed-by: Scott Graham <scottmg@chromium.org>
-
Andrii Shyshkalov authored
R=agable@chromium.org BUG=653172 Change-Id: I141a1422a8f526040fe80522a41d14e2cd8cfc07 Reviewed-on: https://chromium-review.googlesource.com/458421 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Aaron Gable <agable@chromium.org>
-
Paweł Hajdan, Jr authored
Bug: 699120, 704864 Change-Id: Iea62a8382ae2553af3f080f07358de53c278ad7c Reviewed-on: https://chromium-review.googlesource.com/459496Reviewed-by: Emma Söderberg <emso@chromium.org> Commit-Queue: Paweł Hajdan Jr. <phajdan.jr@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/fd0d8541ec8f579c68bf8214acfaf08f23117882 autoroll: use new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: Ia7a9971f28cdcf3243c3f50894de9fd2919f773e Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/458818 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Paweł Hajdan, Jr authored
This will help remove confusion when depot_tools' recipes.py ends up in PATH. BUG=699120 Change-Id: Id4c21b0cc6bb022ea2c21145abe76bebb0a8d9c1 Reviewed-on: https://chromium-review.googlesource.com/458430 Commit-Queue: Paweł Hajdan Jr. <phajdan.jr@chromium.org> Reviewed-by: Robbie Iannucci <iannucci@chromium.org>
-
- 23 Mar, 2017 9 commits
-
-
Robert Iannucci authored
Bug: 699379 Change-Id: I917b34b36e7e7d3b0ef4773a57c7905ec4eccb18 Reviewed-on: https://chromium-review.googlesource.com/458595Reviewed-by: Daniel Jacques <dnj@chromium.org> Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/3125a3b89e18dff89cf6d59f0a0486d832521bf1 [recipes.cfg] Switch to json for real, add canonical_repo_url. (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: Icfb817ba78e282fdea90c45c0a3be881136f5dc0 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/458064 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Andrii Shyshkalov authored
It's pointless, and sleeping between retries adds unnecessary delays which wastes capacity and developers time. BUG=690940 R=hinoka@chromium.org Change-Id: I80cf52f04ed74e2407c373326a8c6f52a3a7d958 Reviewed-on: https://chromium-review.googlesource.com/458439Reviewed-by: Ryan Tseng <hinoka@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
-
Aaron Gable authored
Note that because it is now a gerrit footer, it both appears in the same block as the Change-Id footer (no blank line between them), and isn't guaranteed to be above the Change-Id footer. This doesn't matter during "git cl upload", when a Change-Id hasn't been allocated yet, but will show up during "git cl description". Bug: 681184 Change-Id: I2ab6fc13be8e992709618a666012410b1a7c02de Reviewed-on: https://chromium-review.googlesource.com/446660 Commit-Queue: Aaron Gable <agable@chromium.org> Reviewed-by: Robbie Iannucci <iannucci@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/033f8117b5cb6de01ad56606aca0437b2ba7cd7c Update documentation about recipe tests (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: Iae8679bfec3435e6b05433279f6ae8b544d545e6 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/458122 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Raphael Kubo da Costa authored
Retain the httplib import to continue using its constants, but actually make the http(s) connections using httplib2. The latter has built-in support for proxy settings, which then actually allows people behind proxies to interact with Gerrit. Compared to httplib, the biggest changes are: - There's only one Http class instead of HTTPConnection and HTTPSConnection. - Http.request() returns a tuple (response, contents). - Http.request() expects a full URI instead of just a path, as Http's constructor does not take a host parameter. - The response object inherits from dict. - All headers in a response are lower-cased. All in all, it is possible to see that httplib2 support was retro-fitted into the code, but that should not worsen its readability. Changes since https://chromium-review.googlesource.com/c/458221/: - Catch httplib2.ServerNotFoundError exceptions in GceAuthenticator, as httplib2 catches socket.gaierror (which was previously being used to detect when metadata.google.internal was not accessible) and throws a ServerNotFoundError exception instead. Patch written in collaboration with Alexis Menard <alexis.menard@intel.com>. BUG=672729 R=alexis.menard@intel.com,agable@chromium.org,tandrii@chromium.org Change-Id: Iaefa9caf3d8c0bc6ff67f562cd0b6bd9fade2f24 Reviewed-on: https://chromium-review.googlesource.com/458480Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Raphael Kubo da Costa (rakuco) <raphael.kubo.da.costa@intel.com>
-
Aaron Gable authored
This reverts commit d7568645. Reason for revert: third_party.httplib2.ServerNotFoundError: Unable to find the server at metadata.google.internal Original change's description: > gerrit_util: Use httplib2 for communication instead of httplib. > > Retain the httplib import to continue using its constants, but actually make > the http(s) connections using httplib2. The latter has built-in support for > proxy settings, which then actually allows people behind proxies to interact > with Gerrit. > > Compared to httplib, the biggest changes are: > - There's only one Http class instead of HTTPConnection and HTTPSConnection. > - Http.request() returns a tuple (response, contents). > - Http.request() expects a full URI instead of just a path, as Http's > constructor does not take a host parameter. > - The response object inherits from dict. > - All headers in a response are lower-cased. > > All in all, it is possible to see that httplib2 support was retro-fitted > into the code, but that should not worsen its readability overall. > > Patch written in collaboration with Alexis Menard <alexis.menard@intel.com>. > > BUG=672729 > R=alexis.menard@intel.com,agable@chromium.org,tandrii@chromium.org > > Change-Id: Ic40e804064e74e89bc2ad979572628f1bd78c19a > Reviewed-on: https://chromium-review.googlesource.com/458221 > Reviewed-by: Aaron Gable <agable@chromium.org> > Commit-Queue: Raphael Kubo da Costa (rakuco) <raphael.kubo.da.costa@intel.com> > TBR=agable@chromium.org,alexis.menard@intel.com,raphael.kubo.da.costa@intel.com,tandrii@chromium.org,chromium-reviews@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=672729 Change-Id: Idfacd314b381232733bb92a02ec2fb85f016effd Reviewed-on: https://chromium-review.googlesource.com/457792Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
Raphael Kubo da Costa authored
Retain the httplib import to continue using its constants, but actually make the http(s) connections using httplib2. The latter has built-in support for proxy settings, which then actually allows people behind proxies to interact with Gerrit. Compared to httplib, the biggest changes are: - There's only one Http class instead of HTTPConnection and HTTPSConnection. - Http.request() returns a tuple (response, contents). - Http.request() expects a full URI instead of just a path, as Http's constructor does not take a host parameter. - The response object inherits from dict. - All headers in a response are lower-cased. All in all, it is possible to see that httplib2 support was retro-fitted into the code, but that should not worsen its readability overall. Patch written in collaboration with Alexis Menard <alexis.menard@intel.com>. BUG=672729 R=alexis.menard@intel.com,agable@chromium.org,tandrii@chromium.org Change-Id: Ic40e804064e74e89bc2ad979572628f1bd78c19a Reviewed-on: https://chromium-review.googlesource.com/458221Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Raphael Kubo da Costa (rakuco) <raphael.kubo.da.costa@intel.com>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/3e8a9964590120020a29e2749a99c043197d088b repo_test_util: use new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: Iab86dac75442c37b37e1af84c9f60b1d34da3c1e Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/458160 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
- 22 Mar, 2017 4 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/ef924b01de36ab3c70e79f7782acb3f66ffdd3fd [package.proto] Make recipe json loading forwards-compatible (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: I15a9abf9b3a0b0204044abece5101760eebdb5ab Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/457979 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Daniel Cheng authored
BUG=702851 Change-Id: I56ae20bdc096aaa92ccb5e6e250349ccf4c01a32 Reviewed-on: https://chromium-review.googlesource.com/457913Reviewed-by: Dirk Pranke <dpranke@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org>
-
Daniel Cheng authored
BUG=702851 Change-Id: I6f005d19524cbb8b361d3fcb0b91912885c46e00 Reviewed-on: https://chromium-review.googlesource.com/456755 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
-
Sergey Berezin authored
This reverts commit e718958c. Reason for revert: Suspected to have caused an outage http://o/370111 It seems to have shifted the current dir to a new place, created another checkout and some bots with small disk space ran out of disk. Original change's description: > define builder_cache base path > > chromium_tests recipe module currently checks if builder_cache base path > is defined. If it is not, it let's the caller to decide where to put > the cache. All the callers choose start_dir. > https://cs.chromium.org/search/?q=get_checkout_dir&type=cs > > In LUCI we want to use [CACHE]/builder as builder cache. To do that we > want to update chromium_tests recipe module to use [CACHE]/builder if > builder_cache is not defined. > > Define builder_cache in buildbot to point to start dir, so that in LUCI > it is not defined and thus [CACHE]/builder is used. > > R=iannucci@chromium.org > BUG=660481 > > Change-Id: I9018da5c43a5396add6a26ad2c12b1755fbe6307 > Reviewed-on: https://chromium-review.googlesource.com/457439 > Reviewed-by: Ryan Tseng <hinoka@chromium.org> > Commit-Queue: Nodir Turakulov <nodir@chromium.org> > TBR=iannucci@chromium.org,hinoka@chromium.org,estaab@chromium.org,nodir@chromium.org,chromium-reviews@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=660481 Change-Id: Ia239ebe12a5bea1987c2ee23e543460efe753c81 Reviewed-on: https://chromium-review.googlesource.com/457778Reviewed-by: Sergey Berezin <sergeyberezin@chromium.org> Commit-Queue: Sergey Berezin <sergeyberezin@chromium.org>
-
- 21 Mar, 2017 4 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/157bae7bdfe2608d4bff84eaa90db0fdae71e26b Add structured JSON result output to new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: If68f7c3b4a1aa1e8fc30338a093949524d1c05fb Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/457201 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Nodir Turakulov authored
chromium_tests recipe module currently checks if builder_cache base path is defined. If it is not, it let's the caller to decide where to put the cache. All the callers choose start_dir. https://cs.chromium.org/search/?q=get_checkout_dir&type=cs In LUCI we want to use [CACHE]/builder as builder cache. To do that we want to update chromium_tests recipe module to use [CACHE]/builder if builder_cache is not defined. Define builder_cache in buildbot to point to start dir, so that in LUCI it is not defined and thus [CACHE]/builder is used. R=iannucci@chromium.org BUG=660481 Change-Id: I9018da5c43a5396add6a26ad2c12b1755fbe6307 Reviewed-on: https://chromium-review.googlesource.com/457439Reviewed-by: Ryan Tseng <hinoka@chromium.org> Commit-Queue: Nodir Turakulov <nodir@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/6488afec4a1b4ac51a8601e308c42cd6a176c190 [recipes.cfg] upgrade recipes.cfg to JSON. (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: Ia3a9c57d3e995fcfd56d1a58fb69a60bb1952a24 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456830 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/fb61dcf4145be9d98f85d02af72a498f09782800 [autoroll] cache commit_metadata operations. (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: Id069b0d22d90f5248f9d2537c522e72828be57e6 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456806 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
- 20 Mar, 2017 5 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/81de92519dd374d9b193362034fae8861476bc5f [autoroll] make autoroller propagate changes to recipes.py. (iannucci@chromium.org) https://crrev.com/0ee0446195595e5df02fc2dc82e4988b601b113e Carefully clean more unused recipe expectation directories in new 'test' command (phajdan.jr@chromium.org) https://crrev.com/803d6ead998b4bbca601fb3a984e76ddc063806d Fix autoroll command. (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: I82dd353affefd2fef61af3ed0c6ceb2d74d601a8 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456386 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Paweł Hajdan, Jr authored
BUG=chromium:699120 Change-Id: Ie498bec2e2e38cbde8fac6409b13d2032b2e1a1b Reviewed-on: https://chromium-review.googlesource.com/457318Reviewed-by: Robbie Iannucci <iannucci@chromium.org> Commit-Queue: Paweł Hajdan Jr. <phajdan.jr@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/aa0a2d61cd31decf9a5c048b677ba38eb209a1c6 Correctly handle tricky characters in test names in new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: I35067e2d605ea7b64c4422b184f10f7b541b82d8 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456804 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Andrii Shyshkalov authored
R=agable@chromium.org,machenbach@chromium.org BUG=698236 Change-Id: If79f938e457f176c47badd75f78ed4ecb764ec2d Reviewed-on: https://chromium-review.googlesource.com/456700 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Reviewed-by: Aaron Gable <agable@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/e300f3a3b8193b84b88599faa30c0301e155c906 Handle unused recipe expectations in new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: I7ef26ceef1bd243a88a02a42b0092a8f02ea679d Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456363 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
- 19 Mar, 2017 1 commit
-
-
Robert Iannucci authored
BUG=670678 Change-Id: If3104a6d666e84d7150ba805672dac3e34a1f9a1 Reviewed-on: https://chromium-review.googlesource.com/416269 Commit-Queue: Robbie Iannucci <iannucci@chromium.org> Reviewed-by: Stephen Martinis <martiniss@chromium.org> Reviewed-by: Aaron Gable <agable@chromium.org>
-
- 17 Mar, 2017 6 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/78f105cbebb6e8dc99d64638d400868851cb0c40 Add --train support to the new 'test' command (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: Iea696baa5091710c314309e063d7bd008953dcca Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/457078 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Andrii Shyshkalov authored
R=agable@chromium.org,machenbach@chromium.org BUG=698236 Change-Id: I36dcd2f10d0518a9f04a766e09c1ab00f2ce4d3b Reviewed-on: https://chromium-review.googlesource.com/456699 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org>
-
Andrii Shyshkalov authored
R=agable@chromium.org,machenbach@chromium.org BUG=698236 Change-Id: I04e264130952e3e270540fae8381db544cf40e7c Reviewed-on: https://chromium-review.googlesource.com/456697 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org>
-
Andrii Shyshkalov authored
BUG=700239 R=iannucci@chromium.org Change-Id: Ica4567288c1cd83f72cce5d10c523270b69c36d4 Reviewed-on: https://chromium-review.googlesource.com/455739Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
-
Andrii Shyshkalov authored
BUG=698236 Change-Id: Ia1a36af71c348be991d77083092c5043c2642c19 Reviewed-on: https://chromium-review.googlesource.com/455877Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
-
Paweł Hajdan, Jr authored
See https://groups.google.com/a/chromium.org/d/msg/infra-dev/p8Iq9v9Y4k0/w__b1zTWAQAJ for more context. BUG=685746 Change-Id: If0bdcbd354b2535de22a7be78dad86e15c9f2cea Reviewed-on: https://chromium-review.googlesource.com/456217 Commit-Queue: Paweł Hajdan Jr. <phajdan.jr@chromium.org> Reviewed-by: Robbie Iannucci <iannucci@chromium.org>
-
- 16 Mar, 2017 6 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/d5a670b19aba7fb9a7f6430d39dab1d3414b578a Make a copy of env in the recipe context (phajdan.jr@chromium.org) TBR=iannucci@chromium.org Change-Id: Ieab8f3536096944dac96b1f0424fa8d75b014403 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456378 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-
Andrii Shyshkalov authored
BUG=689543 Change-Id: I2c5dd9e1ef4a23ba805c8c057ad44c87cfb65a5b Reviewed-on: https://chromium-review.googlesource.com/455782 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org>
-
Andrii Shyshkalov authored
These methods are used to produce report in the next CL. BUG=689543 Change-Id: I71b2705ac8b046103b4982d47f7ec97f8ef7818b Reviewed-on: https://chromium-review.googlesource.com/455838 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org>
-
Nicolas Dossou-gbete authored
That JSON output format shows some additional fields such as bug number for CLs, label and component for issues. Also does minor changes like replacing the old code.google.com references and using short urls when possible. BUG=None Change-Id: I988d292dc57b72a2f2c6f12096266df8a09a4dd8 Reviewed-on: https://chromium-review.googlesource.com/422203Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Nicolas Dossou-Gbété <dgn@chromium.org>
-
Robert Iannucci authored
This will enable it to be compatible with both the textpb and upcoming jsonpb form of recipes.cfg. BUG=699379 Change-Id: Iafa3d959190648eca4fa864aaa79430759e568fe Reviewed-on: https://chromium-review.googlesource.com/455585Reviewed-by: Nodir Turakulov <nodir@chromium.org> Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/f605e5c0bc2e748170ca851383cb552c7225316b [doc/recipes.py] allow both json and text proto forms of recipes.cfg. (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: I3ab97f1a88e615562040ff3e4dce1d9aef60ac78 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/456020 Reviewed-by: <recipe-roller@chromium.org> Commit-Queue: <recipe-roller@chromium.org>
-