libv8 5.6.326.50.0beta1 → 5.7.492.65.0beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -1
  3. data/README.md +1 -0
  4. data/Rakefile +8 -1
  5. data/ext/libv8/arch.rb +5 -5
  6. data/ext/libv8/builder.rb +9 -5
  7. data/lib/libv8/version.rb +1 -1
  8. data/patches/0001-Build-a-standalone-static-library.patch +2 -2
  9. data/patches/0002-Don-t-compile-unnecessary-stuff.patch +11 -7
  10. data/patches/0003-Use-the-fPIC-flag-for-the-static-library.patch +2 -2
  11. data/patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch +2 -2
  12. data/vendor/depot_tools/.gitignore +1 -0
  13. data/vendor/depot_tools/cbuildbot +1 -1
  14. data/vendor/depot_tools/chrome_set_ver +1 -1
  15. data/vendor/depot_tools/cipd_client_version +1 -1
  16. data/vendor/depot_tools/cit.py +1 -1
  17. data/vendor/depot_tools/cpplint.py +2 -1
  18. data/vendor/depot_tools/cros +1 -1
  19. data/vendor/depot_tools/cros_sdk +1 -1
  20. data/vendor/depot_tools/gclient.py +3 -2
  21. data/vendor/depot_tools/gerrit_util.py +99 -55
  22. data/vendor/depot_tools/git_cache.py +22 -6
  23. data/vendor/depot_tools/git_cl.py +532 -92
  24. data/vendor/depot_tools/git_common.py +3 -1
  25. data/vendor/depot_tools/infra/config/recipes.cfg +21 -8
  26. data/vendor/depot_tools/man/html/depot_tools.html +9 -1
  27. data/vendor/depot_tools/man/html/git-cl.html +1025 -0
  28. data/vendor/depot_tools/man/html/git-squash-branch.html +2 -2
  29. data/vendor/depot_tools/man/html/git-upstream-diff.html +1 -1
  30. data/vendor/depot_tools/man/man1/git-cl.1 +193 -0
  31. data/vendor/depot_tools/man/man1/git-squash-branch.1 +4 -4
  32. data/vendor/depot_tools/man/man1/git-upstream-diff.1 +3 -3
  33. data/vendor/depot_tools/man/man7/depot_tools.7 +8 -3
  34. data/vendor/depot_tools/man/src/_git-cl_desc.helper.txt +1 -0
  35. data/vendor/depot_tools/man/src/git-cl.txt +116 -0
  36. data/vendor/depot_tools/my_activity.py +226 -50
  37. data/vendor/depot_tools/owners.py +50 -25
  38. data/vendor/depot_tools/presubmit_canned_checks.py +3 -0
  39. data/vendor/depot_tools/presubmit_support.py +19 -0
  40. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/OWNERS +0 -0
  41. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/__init__.py +0 -0
  42. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/api.py +14 -11
  43. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/apply_gerrit_ref.json +1 -0
  44. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/basic.json +1 -0
  45. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/basic_output_manifest.json +1 -0
  46. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/basic_with_branch_heads.json +1 -0
  47. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/buildbot.json +1 -0
  48. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/clobber.json +1 -0
  49. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/gerrit_no_rebase_patch_ref.json +1 -0
  50. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/gerrit_no_reset.json +1 -0
  51. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/no_shallow.json +1 -0
  52. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/reset_root_solution_revision.json +1 -0
  53. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/trychange.json +1 -0
  54. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/trychange_oauth2.json +0 -0
  55. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/trychange_oauth2_buildbot.json +1 -0
  56. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/trychange_oauth2_json.json +1 -0
  57. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/trychange_oauth2_json_win.json +1 -0
  58. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob.json +1 -0
  59. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_fail.json +1 -0
  60. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_fail_patch.json +1 -0
  61. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_fail_patch_download.json +2 -0
  62. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_gerrit_angle.json +1 -0
  63. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_gerrit_angle_deprecated.json +1 -0
  64. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_v8.json +1 -0
  65. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.expected/tryjob_v8_head_by_default.json +1 -0
  66. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/example.py +0 -0
  67. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/resources/__init__.py +0 -0
  68. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/resources/apply_gerrit.py +0 -0
  69. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/resources/bot_update.py +2 -2
  70. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/bot_update/test_api.py +0 -0
  71. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/__init__.py +0 -0
  72. data/vendor/depot_tools/recipes/recipe_modules/cipd/api.py +412 -0
  73. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.expected/basic.json +8 -2
  74. data/vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/basic_pkg.json +405 -0
  75. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.expected/describe-failed.json +0 -0
  76. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.expected/describe-many-instances.json +8 -2
  77. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.expected/mac64.json +8 -2
  78. data/vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_file.json +289 -0
  79. data/vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_mode.json +289 -0
  80. data/vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_verfile.json +289 -0
  81. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.expected/win64.json +21 -15
  82. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/example.py +101 -20
  83. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/cipd/test_api.py +0 -0
  84. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/depot_tools/__init__.py +0 -0
  85. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/depot_tools/api.py +0 -0
  86. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/depot_tools/example.expected/basic.json +0 -0
  87. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/depot_tools/example.expected/win.json +0 -0
  88. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/depot_tools/example.py +0 -0
  89. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/__init__.py +0 -0
  90. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/api.py +12 -10
  91. data/vendor/depot_tools/recipes/recipe_modules/gclient/bundle_extra_paths.txt +4 -0
  92. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/config.py +0 -0
  93. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/example.expected/basic.json +9 -0
  94. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/example.expected/buildbot.json +9 -0
  95. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/example.expected/revision.json +9 -0
  96. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/example.expected/tryserver.json +9 -0
  97. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/example.py +0 -0
  98. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gclient/test_api.py +0 -0
  99. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gerrit/__init__.py +1 -0
  100. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gerrit/api.py +11 -10
  101. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gerrit/example.expected/basic.json +2 -0
  102. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gerrit/example.py +0 -0
  103. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gerrit/test_api.py +0 -0
  104. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/__init__.py +0 -0
  105. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/api.py +8 -7
  106. data/vendor/depot_tools/recipes/recipe_modules/git/bundle_extra_paths.txt +28 -0
  107. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic.json +17 -0
  108. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic_branch.json +17 -0
  109. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic_file_name.json +17 -0
  110. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic_hash.json +17 -0
  111. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic_ref.json +17 -0
  112. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/basic_submodule_update_force.json +17 -0
  113. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/can_fail_build.json +12 -0
  114. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/cannot_fail_build.json +17 -0
  115. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/cat-file_test.json +19 -0
  116. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/count-objects_delta.json +19 -0
  117. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/count-objects_failed.json +17 -0
  118. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/count-objects_with_bad_output.json +17 -0
  119. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/count-objects_with_bad_output_fails_build.json +7 -0
  120. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/curl_trace_file.json +17 -0
  121. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/git-cache-checkout.json +20 -0
  122. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/platform_win.json +18 -0
  123. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/rebase_failed.json +17 -0
  124. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/remote_not_origin.json +17 -0
  125. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.expected/set_got_revision.json +17 -0
  126. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/example.py +0 -0
  127. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/resources/git_setup.py +0 -0
  128. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git/test_api.py +0 -0
  129. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git_cl/__init__.py +0 -0
  130. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git_cl/api.py +0 -0
  131. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git_cl/config.py +0 -0
  132. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git_cl/example.expected/basic.json +0 -0
  133. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/git_cl/example.py +0 -0
  134. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gsutil/__init__.py +0 -0
  135. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gsutil/api.py +0 -0
  136. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gsutil/example.expected/basic.json +11 -0
  137. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gsutil/example.py +0 -0
  138. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/gsutil/resources/gsutil_smart_retry.py +0 -0
  139. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/infra_paths/__init__.py +0 -0
  140. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/infra_paths/api.py +0 -0
  141. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/infra_paths/example.expected/basic.json +1 -2
  142. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_linux.json +15 -0
  143. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_mac.json +15 -0
  144. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_win.json +15 -0
  145. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_linux.json +15 -0
  146. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_mac.json +15 -0
  147. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_win.json +15 -0
  148. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_linux.json +15 -0
  149. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_mac.json +15 -0
  150. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_win.json +15 -0
  151. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/infra_paths/example.py +2 -3
  152. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/infra_paths/path_config.py +5 -3
  153. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/presubmit/__init__.py +1 -0
  154. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/presubmit/api.py +7 -6
  155. data/vendor/depot_tools/recipes/recipe_modules/presubmit/bundle_extra_paths.txt +30 -0
  156. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/presubmit/example.expected/basic.json +0 -0
  157. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/presubmit/example.py +0 -0
  158. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/rietveld/__init__.py +0 -0
  159. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/rietveld/api.py +0 -0
  160. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/rietveld/example.expected/basic.json +0 -0
  161. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/rietveld/example.expected/buildbot.json +0 -0
  162. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/rietveld/example.py +0 -0
  163. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/__init__.py +0 -0
  164. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/api.py +0 -0
  165. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/basic_tags.json +0 -0
  166. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/set_failure_hash_with_no_steps.json +0 -0
  167. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_gerrit_patch.json +1 -0
  168. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_gerrit_patch_deprecated.json +1 -0
  169. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_git_patch.json +4 -0
  170. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_git_patch_luci.json +0 -0
  171. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_rietveld_patch.json +4 -2
  172. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_rietveld_patch_new.json +4 -2
  173. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_wrong_patch.json +2 -0
  174. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.expected/with_wrong_patch_new.json +2 -0
  175. data/vendor/depot_tools/{recipe_modules → recipes/recipe_modules}/tryserver/example.py +0 -0
  176. data/vendor/depot_tools/{recipes.py → recipes/recipes.py} +57 -81
  177. data/vendor/depot_tools/roll_dep.py +13 -5
  178. data/vendor/depot_tools/scm.py +7 -0
  179. data/vendor/depot_tools/third_party/upload.py +4 -0
  180. data/vendor/depot_tools/win_toolchain/get_toolchain_if_necessary.py +3 -39
  181. data/vendor/depot_tools/win_toolchain/package_from_installed.py +159 -114
  182. metadata +144 -133
  183. data/vendor/depot_tools/recipe_modules/cipd/api.py +0 -219
  184. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_buildbot_linux.json +0 -16
  185. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_buildbot_mac.json +0 -16
  186. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_buildbot_win.json +0 -16
  187. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_kitchen_linux.json +0 -16
  188. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_kitchen_mac.json +0 -16
  189. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_kitchen_win.json +0 -16
  190. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_linux.json +0 -16
  191. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_mac.json +0 -16
  192. data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_win.json +0 -16
@@ -24,6 +24,7 @@
24
24
  "env": {
25
25
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
26
26
  },
27
+ "infra_step": true,
27
28
  "name": "git fetch"
28
29
  },
29
30
  {
@@ -34,6 +35,7 @@
34
35
  "FETCH_HEAD"
35
36
  ],
36
37
  "cwd": "[START_DIR]/src",
38
+ "infra_step": true,
37
39
  "name": "git checkout"
38
40
  },
39
41
  {
@@ -43,6 +45,7 @@
43
45
  "HEAD"
44
46
  ],
45
47
  "cwd": "[START_DIR]/src",
48
+ "infra_step": true,
46
49
  "name": "read revision",
47
50
  "stdout": "/path/to/tmp/",
48
51
  "~followup_annotations": [
@@ -58,6 +61,7 @@
58
61
  "-x"
59
62
  ],
60
63
  "cwd": "[START_DIR]/src",
64
+ "infra_step": true,
61
65
  "name": "git clean"
62
66
  },
63
67
  {
@@ -67,6 +71,7 @@
67
71
  "sync"
68
72
  ],
69
73
  "cwd": "[START_DIR]/src",
74
+ "infra_step": true,
70
75
  "name": "submodule sync"
71
76
  },
72
77
  {
@@ -78,6 +83,7 @@
78
83
  "--recursive"
79
84
  ],
80
85
  "cwd": "[START_DIR]/src",
86
+ "infra_step": true,
81
87
  "name": "submodule update"
82
88
  },
83
89
  {
@@ -89,6 +95,7 @@
89
95
  "-v"
90
96
  ],
91
97
  "cwd": "[START_DIR]/src",
98
+ "infra_step": true,
92
99
  "name": "count-objects",
93
100
  "stdout": "/path/to/tmp/"
94
101
  },
@@ -100,6 +107,7 @@
100
107
  "remote.origin.url"
101
108
  ],
102
109
  "cwd": "[START_DIR]/src",
110
+ "infra_step": true,
103
111
  "name": "git config remote.origin.url",
104
112
  "stdout": "/path/to/tmp/",
105
113
  "~followup_annotations": [
@@ -115,6 +123,7 @@
115
123
  "-s"
116
124
  ],
117
125
  "cwd": "[START_DIR]/src",
126
+ "infra_step": true,
118
127
  "name": "git show",
119
128
  "stdout": "/path/to/tmp/"
120
129
  },
@@ -126,6 +135,7 @@
126
135
  "--tags"
127
136
  ],
128
137
  "cwd": "[START_DIR]/src",
138
+ "infra_step": true,
129
139
  "name": "git fetch tags"
130
140
  },
131
141
  {
@@ -134,6 +144,7 @@
134
144
  "status"
135
145
  ],
136
146
  "cwd": "[START_DIR]/src",
147
+ "infra_step": true,
137
148
  "name": "git status"
138
149
  },
139
150
  {
@@ -142,6 +153,7 @@
142
153
  "status"
143
154
  ],
144
155
  "cwd": "[START_DIR]/src",
156
+ "infra_step": true,
145
157
  "name": "git status can_fail_build"
146
158
  },
147
159
  {
@@ -150,6 +162,7 @@
150
162
  "status"
151
163
  ],
152
164
  "cwd": "[START_DIR]/src",
165
+ "infra_step": true,
153
166
  "name": "git status cannot_fail_build"
154
167
  },
155
168
  {
@@ -162,6 +175,7 @@
162
175
  "env": {
163
176
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
164
177
  },
178
+ "infra_step": true,
165
179
  "name": "git new-branch refactor"
166
180
  },
167
181
  {
@@ -176,6 +190,7 @@
176
190
  "env": {
177
191
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
178
192
  },
193
+ "infra_step": true,
179
194
  "name": "git new-branch feature"
180
195
  },
181
196
  {
@@ -185,6 +200,7 @@
185
200
  "origin/master"
186
201
  ],
187
202
  "cwd": "[START_DIR]/src",
203
+ "infra_step": true,
188
204
  "name": "my repo rebase"
189
205
  },
190
206
  {
@@ -195,6 +211,7 @@
195
211
  "--tags"
196
212
  ],
197
213
  "cwd": "[START_DIR]/src",
214
+ "infra_step": true,
198
215
  "name": "git fetch tags (2)",
199
216
  "stdout": "/path/to/tmp/"
200
217
  },
@@ -206,6 +223,7 @@
206
223
  "abcdef12345:TestFile"
207
224
  ],
208
225
  "cwd": "[START_DIR]/src",
226
+ "infra_step": true,
209
227
  "name": "git cat-file abcdef12345:TestFile",
210
228
  "stdout": "/path/to/tmp/"
211
229
  },
@@ -218,6 +236,7 @@
218
236
  "--all"
219
237
  ],
220
238
  "cwd": "[START_DIR]/src",
239
+ "infra_step": true,
221
240
  "name": "git bundle"
222
241
  },
223
242
  {
@@ -18,6 +18,7 @@
18
18
  "-v"
19
19
  ],
20
20
  "cwd": "[START_DIR]/src",
21
+ "infra_step": true,
21
22
  "name": "count-objects before git fetch",
22
23
  "stdout": "/path/to/tmp/",
23
24
  "~followup_annotations": [
@@ -45,6 +46,7 @@
45
46
  "env": {
46
47
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
47
48
  },
49
+ "infra_step": true,
48
50
  "name": "git fetch"
49
51
  },
50
52
  {
@@ -54,6 +56,7 @@
54
56
  "-v"
55
57
  ],
56
58
  "cwd": "[START_DIR]/src",
59
+ "infra_step": true,
57
60
  "name": "count-objects after git fetch",
58
61
  "stdout": "/path/to/tmp/",
59
62
  "~followup_annotations": [
@@ -107,6 +110,7 @@
107
110
  "FETCH_HEAD"
108
111
  ],
109
112
  "cwd": "[START_DIR]/src",
113
+ "infra_step": true,
110
114
  "name": "git checkout"
111
115
  },
112
116
  {
@@ -116,6 +120,7 @@
116
120
  "HEAD"
117
121
  ],
118
122
  "cwd": "[START_DIR]/src",
123
+ "infra_step": true,
119
124
  "name": "read revision",
120
125
  "stdout": "/path/to/tmp/",
121
126
  "~followup_annotations": [
@@ -131,6 +136,7 @@
131
136
  "-x"
132
137
  ],
133
138
  "cwd": "[START_DIR]/src",
139
+ "infra_step": true,
134
140
  "name": "git clean"
135
141
  },
136
142
  {
@@ -140,6 +146,7 @@
140
146
  "sync"
141
147
  ],
142
148
  "cwd": "[START_DIR]/src",
149
+ "infra_step": true,
143
150
  "name": "submodule sync"
144
151
  },
145
152
  {
@@ -151,6 +158,7 @@
151
158
  "--recursive"
152
159
  ],
153
160
  "cwd": "[START_DIR]/src",
161
+ "infra_step": true,
154
162
  "name": "submodule update"
155
163
  },
156
164
  {
@@ -162,6 +170,7 @@
162
170
  "-v"
163
171
  ],
164
172
  "cwd": "[START_DIR]/src",
173
+ "infra_step": true,
165
174
  "name": "count-objects",
166
175
  "stdout": "/path/to/tmp/"
167
176
  },
@@ -173,6 +182,7 @@
173
182
  "remote.origin.url"
174
183
  ],
175
184
  "cwd": "[START_DIR]/src",
185
+ "infra_step": true,
176
186
  "name": "git config remote.origin.url",
177
187
  "stdout": "/path/to/tmp/",
178
188
  "~followup_annotations": [
@@ -188,6 +198,7 @@
188
198
  "-s"
189
199
  ],
190
200
  "cwd": "[START_DIR]/src",
201
+ "infra_step": true,
191
202
  "name": "git show",
192
203
  "stdout": "/path/to/tmp/"
193
204
  },
@@ -199,6 +210,7 @@
199
210
  "--tags"
200
211
  ],
201
212
  "cwd": "[START_DIR]/src",
213
+ "infra_step": true,
202
214
  "name": "git fetch tags"
203
215
  },
204
216
  {
@@ -207,6 +219,7 @@
207
219
  "status"
208
220
  ],
209
221
  "cwd": "[START_DIR]/src",
222
+ "infra_step": true,
210
223
  "name": "git status"
211
224
  },
212
225
  {
@@ -215,6 +228,7 @@
215
228
  "status"
216
229
  ],
217
230
  "cwd": "[START_DIR]/src",
231
+ "infra_step": true,
218
232
  "name": "git status can_fail_build"
219
233
  },
220
234
  {
@@ -223,6 +237,7 @@
223
237
  "status"
224
238
  ],
225
239
  "cwd": "[START_DIR]/src",
240
+ "infra_step": true,
226
241
  "name": "git status cannot_fail_build"
227
242
  },
228
243
  {
@@ -235,6 +250,7 @@
235
250
  "env": {
236
251
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
237
252
  },
253
+ "infra_step": true,
238
254
  "name": "git new-branch refactor"
239
255
  },
240
256
  {
@@ -249,6 +265,7 @@
249
265
  "env": {
250
266
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
251
267
  },
268
+ "infra_step": true,
252
269
  "name": "git new-branch feature"
253
270
  },
254
271
  {
@@ -258,6 +275,7 @@
258
275
  "origin/master"
259
276
  ],
260
277
  "cwd": "[START_DIR]/src",
278
+ "infra_step": true,
261
279
  "name": "my repo rebase"
262
280
  },
263
281
  {
@@ -269,6 +287,7 @@
269
287
  "--all"
270
288
  ],
271
289
  "cwd": "[START_DIR]/src",
290
+ "infra_step": true,
272
291
  "name": "git bundle"
273
292
  },
274
293
  {
@@ -24,6 +24,7 @@
24
24
  "env": {
25
25
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
26
26
  },
27
+ "infra_step": true,
27
28
  "name": "git fetch"
28
29
  },
29
30
  {
@@ -34,6 +35,7 @@
34
35
  "FETCH_HEAD"
35
36
  ],
36
37
  "cwd": "[START_DIR]/src",
38
+ "infra_step": true,
37
39
  "name": "git checkout"
38
40
  },
39
41
  {
@@ -43,6 +45,7 @@
43
45
  "HEAD"
44
46
  ],
45
47
  "cwd": "[START_DIR]/src",
48
+ "infra_step": true,
46
49
  "name": "read revision",
47
50
  "stdout": "/path/to/tmp/",
48
51
  "~followup_annotations": [
@@ -58,6 +61,7 @@
58
61
  "-x"
59
62
  ],
60
63
  "cwd": "[START_DIR]/src",
64
+ "infra_step": true,
61
65
  "name": "git clean"
62
66
  },
63
67
  {
@@ -67,6 +71,7 @@
67
71
  "sync"
68
72
  ],
69
73
  "cwd": "[START_DIR]/src",
74
+ "infra_step": true,
70
75
  "name": "submodule sync"
71
76
  },
72
77
  {
@@ -78,6 +83,7 @@
78
83
  "--recursive"
79
84
  ],
80
85
  "cwd": "[START_DIR]/src",
86
+ "infra_step": true,
81
87
  "name": "submodule update"
82
88
  },
83
89
  {
@@ -89,6 +95,7 @@
89
95
  "-v"
90
96
  ],
91
97
  "cwd": "[START_DIR]/src",
98
+ "infra_step": true,
92
99
  "name": "count-objects",
93
100
  "stdout": "/path/to/tmp/",
94
101
  "~followup_annotations": [
@@ -104,6 +111,7 @@
104
111
  "remote.origin.url"
105
112
  ],
106
113
  "cwd": "[START_DIR]/src",
114
+ "infra_step": true,
107
115
  "name": "git config remote.origin.url",
108
116
  "stdout": "/path/to/tmp/",
109
117
  "~followup_annotations": [
@@ -119,6 +127,7 @@
119
127
  "-s"
120
128
  ],
121
129
  "cwd": "[START_DIR]/src",
130
+ "infra_step": true,
122
131
  "name": "git show",
123
132
  "stdout": "/path/to/tmp/"
124
133
  },
@@ -130,6 +139,7 @@
130
139
  "--tags"
131
140
  ],
132
141
  "cwd": "[START_DIR]/src",
142
+ "infra_step": true,
133
143
  "name": "git fetch tags"
134
144
  },
135
145
  {
@@ -138,6 +148,7 @@
138
148
  "status"
139
149
  ],
140
150
  "cwd": "[START_DIR]/src",
151
+ "infra_step": true,
141
152
  "name": "git status"
142
153
  },
143
154
  {
@@ -146,6 +157,7 @@
146
157
  "status"
147
158
  ],
148
159
  "cwd": "[START_DIR]/src",
160
+ "infra_step": true,
149
161
  "name": "git status can_fail_build"
150
162
  },
151
163
  {
@@ -154,6 +166,7 @@
154
166
  "status"
155
167
  ],
156
168
  "cwd": "[START_DIR]/src",
169
+ "infra_step": true,
157
170
  "name": "git status cannot_fail_build"
158
171
  },
159
172
  {
@@ -166,6 +179,7 @@
166
179
  "env": {
167
180
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
168
181
  },
182
+ "infra_step": true,
169
183
  "name": "git new-branch refactor"
170
184
  },
171
185
  {
@@ -180,6 +194,7 @@
180
194
  "env": {
181
195
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
182
196
  },
197
+ "infra_step": true,
183
198
  "name": "git new-branch feature"
184
199
  },
185
200
  {
@@ -189,6 +204,7 @@
189
204
  "origin/master"
190
205
  ],
191
206
  "cwd": "[START_DIR]/src",
207
+ "infra_step": true,
192
208
  "name": "my repo rebase"
193
209
  },
194
210
  {
@@ -200,6 +216,7 @@
200
216
  "--all"
201
217
  ],
202
218
  "cwd": "[START_DIR]/src",
219
+ "infra_step": true,
203
220
  "name": "git bundle"
204
221
  },
205
222
  {
@@ -24,6 +24,7 @@
24
24
  "env": {
25
25
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
26
26
  },
27
+ "infra_step": true,
27
28
  "name": "git fetch"
28
29
  },
29
30
  {
@@ -34,6 +35,7 @@
34
35
  "FETCH_HEAD"
35
36
  ],
36
37
  "cwd": "[START_DIR]/src",
38
+ "infra_step": true,
37
39
  "name": "git checkout"
38
40
  },
39
41
  {
@@ -43,6 +45,7 @@
43
45
  "HEAD"
44
46
  ],
45
47
  "cwd": "[START_DIR]/src",
48
+ "infra_step": true,
46
49
  "name": "read revision",
47
50
  "stdout": "/path/to/tmp/",
48
51
  "~followup_annotations": [
@@ -58,6 +61,7 @@
58
61
  "-x"
59
62
  ],
60
63
  "cwd": "[START_DIR]/src",
64
+ "infra_step": true,
61
65
  "name": "git clean"
62
66
  },
63
67
  {
@@ -67,6 +71,7 @@
67
71
  "sync"
68
72
  ],
69
73
  "cwd": "[START_DIR]/src",
74
+ "infra_step": true,
70
75
  "name": "submodule sync"
71
76
  },
72
77
  {
@@ -78,6 +83,7 @@
78
83
  "--recursive"
79
84
  ],
80
85
  "cwd": "[START_DIR]/src",
86
+ "infra_step": true,
81
87
  "name": "submodule update"
82
88
  },
83
89
  {
@@ -89,6 +95,7 @@
89
95
  "-v"
90
96
  ],
91
97
  "cwd": "[START_DIR]/src",
98
+ "infra_step": true,
92
99
  "name": "count-objects",
93
100
  "stdout": "/path/to/tmp/",
94
101
  "~followup_annotations": [
@@ -105,6 +112,7 @@
105
112
  "remote.origin.url"
106
113
  ],
107
114
  "cwd": "[START_DIR]/src",
115
+ "infra_step": true,
108
116
  "name": "git config remote.origin.url",
109
117
  "stdout": "/path/to/tmp/",
110
118
  "~followup_annotations": [
@@ -120,6 +128,7 @@
120
128
  "-s"
121
129
  ],
122
130
  "cwd": "[START_DIR]/src",
131
+ "infra_step": true,
123
132
  "name": "git show",
124
133
  "stdout": "/path/to/tmp/"
125
134
  },
@@ -131,6 +140,7 @@
131
140
  "--tags"
132
141
  ],
133
142
  "cwd": "[START_DIR]/src",
143
+ "infra_step": true,
134
144
  "name": "git fetch tags"
135
145
  },
136
146
  {
@@ -139,6 +149,7 @@
139
149
  "status"
140
150
  ],
141
151
  "cwd": "[START_DIR]/src",
152
+ "infra_step": true,
142
153
  "name": "git status"
143
154
  },
144
155
  {
@@ -147,6 +158,7 @@
147
158
  "status"
148
159
  ],
149
160
  "cwd": "[START_DIR]/src",
161
+ "infra_step": true,
150
162
  "name": "git status can_fail_build"
151
163
  },
152
164
  {
@@ -155,6 +167,7 @@
155
167
  "status"
156
168
  ],
157
169
  "cwd": "[START_DIR]/src",
170
+ "infra_step": true,
158
171
  "name": "git status cannot_fail_build"
159
172
  },
160
173
  {
@@ -167,6 +180,7 @@
167
180
  "env": {
168
181
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
169
182
  },
183
+ "infra_step": true,
170
184
  "name": "git new-branch refactor"
171
185
  },
172
186
  {
@@ -181,6 +195,7 @@
181
195
  "env": {
182
196
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
183
197
  },
198
+ "infra_step": true,
184
199
  "name": "git new-branch feature"
185
200
  },
186
201
  {
@@ -190,6 +205,7 @@
190
205
  "origin/master"
191
206
  ],
192
207
  "cwd": "[START_DIR]/src",
208
+ "infra_step": true,
193
209
  "name": "my repo rebase"
194
210
  },
195
211
  {
@@ -201,6 +217,7 @@
201
217
  "--all"
202
218
  ],
203
219
  "cwd": "[START_DIR]/src",
220
+ "infra_step": true,
204
221
  "name": "git bundle"
205
222
  },
206
223
  {