Commit 2721cc95 authored by Josip Sokcevic's avatar Josip Sokcevic Committed by LUCI CQ

Revert "Use py3 in gitiles recipe module"

This reverts commit 0faae1c8.

Reason for revert: broke dawn and some chromeos builds

Original change's description:
> Use py3 in gitiles recipe module
>
> Recipe-Nontrivial-Roll: build
> Recipe-Nontrivial-Roll: chrome_release
> Recipe-Nontrivial-Roll: chromiumos
> Bug: 1289280
> Change-Id: I182f0e7ad1da58c1c707edd15675f6d30c5faed8
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3438327
> Reviewed-by: Josip Sokcevic <sokcevic@google.com>
> Reviewed-by: Aravind Vasudevan <aravindvasudev@google.com>
> Commit-Queue: Gavin Mak <gavinmak@google.com>

Recipe-Nontrivial-Roll: build
Recipe-Nontrivial-Roll: chrome_release
Recipe-Nontrivial-Roll: chromiumos
Bug: 1289280
Change-Id: I09f2860bac9fbac4c2edb0b77baea3802b077958
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3444000
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Commit-Queue: Josip Sokcevic <sokcevic@google.com>
parent a6ea731a
...@@ -57,8 +57,8 @@ class Gitiles(recipe_api.RecipeApi): ...@@ -57,8 +57,8 @@ class Gitiles(recipe_api.RecipeApi):
args.extend([ args.extend([
'--accept-statuses', '--accept-statuses',
','.join([str(s) for s in accept_statuses])]) ','.join([str(s) for s in accept_statuses])])
cmd = ['python3', '-u', self.resource('gerrit_client.py')] + args return self.m.python(
return self.m.step(step_name, cmd, **kwargs) step_name, self.resource('gerrit_client.py'), args, **kwargs)
def refs(self, url, step_name='refs', attempts=None): def refs(self, url, step_name='refs', attempts=None):
"""Returns a list of refs in the remote repository.""" """Returns a list of refs in the remote repository."""
......
[ [
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -246,7 +246,7 @@ ...@@ -246,7 +246,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -354,7 +354,7 @@ ...@@ -354,7 +354,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -462,7 +462,7 @@ ...@@ -462,7 +462,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -515,7 +515,7 @@ ...@@ -515,7 +515,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -531,7 +531,7 @@ ...@@ -531,7 +531,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -549,7 +549,7 @@ ...@@ -549,7 +549,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
...@@ -568,7 +568,7 @@ ...@@ -568,7 +568,7 @@
}, },
{ {
"cmd": [ "cmd": [
"python3", "python",
"-u", "-u",
"RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py", "RECIPE_MODULE[depot_tools::gitiles]/resources/gerrit_client.py",
"--json-file", "--json-file",
......
#!/usr/bin/env python3 #!/usr/bin/env python
# Copyright 2014 The Chromium Authors. All rights reserved. # Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment