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
  "~followup_annotations": [
190
206
  "step returned non-zero exit code: 1",
@@ -198,6 +214,7 @@
198
214
  "--abort"
199
215
  ],
200
216
  "cwd": "[START_DIR]/src",
217
+ "infra_step": true,
201
218
  "name": "my repo rebase abort"
202
219
  },
203
220
  {
@@ -26,6 +26,7 @@
26
26
  "env": {
27
27
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
28
28
  },
29
+ "infra_step": true,
29
30
  "name": "git fetch"
30
31
  },
31
32
  {
@@ -36,6 +37,7 @@
36
37
  "FETCH_HEAD"
37
38
  ],
38
39
  "cwd": "[START_DIR]/src",
40
+ "infra_step": true,
39
41
  "name": "git checkout"
40
42
  },
41
43
  {
@@ -45,6 +47,7 @@
45
47
  "HEAD"
46
48
  ],
47
49
  "cwd": "[START_DIR]/src",
50
+ "infra_step": true,
48
51
  "name": "read revision",
49
52
  "stdout": "/path/to/tmp/",
50
53
  "~followup_annotations": [
@@ -60,6 +63,7 @@
60
63
  "-x"
61
64
  ],
62
65
  "cwd": "[START_DIR]/src",
66
+ "infra_step": true,
63
67
  "name": "git clean"
64
68
  },
65
69
  {
@@ -69,6 +73,7 @@
69
73
  "sync"
70
74
  ],
71
75
  "cwd": "[START_DIR]/src",
76
+ "infra_step": true,
72
77
  "name": "submodule sync"
73
78
  },
74
79
  {
@@ -80,6 +85,7 @@
80
85
  "--recursive"
81
86
  ],
82
87
  "cwd": "[START_DIR]/src",
88
+ "infra_step": true,
83
89
  "name": "submodule update"
84
90
  },
85
91
  {
@@ -91,6 +97,7 @@
91
97
  "-v"
92
98
  ],
93
99
  "cwd": "[START_DIR]/src",
100
+ "infra_step": true,
94
101
  "name": "count-objects",
95
102
  "stdout": "/path/to/tmp/"
96
103
  },
@@ -102,6 +109,7 @@
102
109
  "remote.origin.url"
103
110
  ],
104
111
  "cwd": "[START_DIR]/src",
112
+ "infra_step": true,
105
113
  "name": "git config remote.origin.url",
106
114
  "stdout": "/path/to/tmp/",
107
115
  "~followup_annotations": [
@@ -117,6 +125,7 @@
117
125
  "-s"
118
126
  ],
119
127
  "cwd": "[START_DIR]/src",
128
+ "infra_step": true,
120
129
  "name": "git show",
121
130
  "stdout": "/path/to/tmp/"
122
131
  },
@@ -128,6 +137,7 @@
128
137
  "--tags"
129
138
  ],
130
139
  "cwd": "[START_DIR]/src",
140
+ "infra_step": true,
131
141
  "name": "git fetch tags"
132
142
  },
133
143
  {
@@ -136,6 +146,7 @@
136
146
  "status"
137
147
  ],
138
148
  "cwd": "[START_DIR]/src",
149
+ "infra_step": true,
139
150
  "name": "git status"
140
151
  },
141
152
  {
@@ -144,6 +155,7 @@
144
155
  "status"
145
156
  ],
146
157
  "cwd": "[START_DIR]/src",
158
+ "infra_step": true,
147
159
  "name": "git status can_fail_build"
148
160
  },
149
161
  {
@@ -152,6 +164,7 @@
152
164
  "status"
153
165
  ],
154
166
  "cwd": "[START_DIR]/src",
167
+ "infra_step": true,
155
168
  "name": "git status cannot_fail_build"
156
169
  },
157
170
  {
@@ -164,6 +177,7 @@
164
177
  "env": {
165
178
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
166
179
  },
180
+ "infra_step": true,
167
181
  "name": "git new-branch refactor"
168
182
  },
169
183
  {
@@ -178,6 +192,7 @@
178
192
  "env": {
179
193
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
180
194
  },
195
+ "infra_step": true,
181
196
  "name": "git new-branch feature"
182
197
  },
183
198
  {
@@ -187,6 +202,7 @@
187
202
  "not_origin/master"
188
203
  ],
189
204
  "cwd": "[START_DIR]/src",
205
+ "infra_step": true,
190
206
  "name": "my repo rebase"
191
207
  },
192
208
  {
@@ -198,6 +214,7 @@
198
214
  "--all"
199
215
  ],
200
216
  "cwd": "[START_DIR]/src",
217
+ "infra_step": true,
201
218
  "name": "git bundle"
202
219
  },
203
220
  {
@@ -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": [
@@ -59,6 +62,7 @@
59
62
  "-x"
60
63
  ],
61
64
  "cwd": "[START_DIR]/src",
65
+ "infra_step": true,
62
66
  "name": "git clean"
63
67
  },
64
68
  {
@@ -68,6 +72,7 @@
68
72
  "sync"
69
73
  ],
70
74
  "cwd": "[START_DIR]/src",
75
+ "infra_step": true,
71
76
  "name": "submodule sync"
72
77
  },
73
78
  {
@@ -79,6 +84,7 @@
79
84
  "--recursive"
80
85
  ],
81
86
  "cwd": "[START_DIR]/src",
87
+ "infra_step": true,
82
88
  "name": "submodule update"
83
89
  },
84
90
  {
@@ -90,6 +96,7 @@
90
96
  "-v"
91
97
  ],
92
98
  "cwd": "[START_DIR]/src",
99
+ "infra_step": true,
93
100
  "name": "count-objects",
94
101
  "stdout": "/path/to/tmp/"
95
102
  },
@@ -101,6 +108,7 @@
101
108
  "remote.origin.url"
102
109
  ],
103
110
  "cwd": "[START_DIR]/src",
111
+ "infra_step": true,
104
112
  "name": "git config remote.origin.url",
105
113
  "stdout": "/path/to/tmp/",
106
114
  "~followup_annotations": [
@@ -116,6 +124,7 @@
116
124
  "-s"
117
125
  ],
118
126
  "cwd": "[START_DIR]/src",
127
+ "infra_step": true,
119
128
  "name": "git show",
120
129
  "stdout": "/path/to/tmp/"
121
130
  },
@@ -127,6 +136,7 @@
127
136
  "--tags"
128
137
  ],
129
138
  "cwd": "[START_DIR]/src",
139
+ "infra_step": true,
130
140
  "name": "git fetch tags"
131
141
  },
132
142
  {
@@ -135,6 +145,7 @@
135
145
  "status"
136
146
  ],
137
147
  "cwd": "[START_DIR]/src",
148
+ "infra_step": true,
138
149
  "name": "git status"
139
150
  },
140
151
  {
@@ -143,6 +154,7 @@
143
154
  "status"
144
155
  ],
145
156
  "cwd": "[START_DIR]/src",
157
+ "infra_step": true,
146
158
  "name": "git status can_fail_build"
147
159
  },
148
160
  {
@@ -151,6 +163,7 @@
151
163
  "status"
152
164
  ],
153
165
  "cwd": "[START_DIR]/src",
166
+ "infra_step": true,
154
167
  "name": "git status cannot_fail_build"
155
168
  },
156
169
  {
@@ -163,6 +176,7 @@
163
176
  "env": {
164
177
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
165
178
  },
179
+ "infra_step": true,
166
180
  "name": "git new-branch refactor"
167
181
  },
168
182
  {
@@ -177,6 +191,7 @@
177
191
  "env": {
178
192
  "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
179
193
  },
194
+ "infra_step": true,
180
195
  "name": "git new-branch feature"
181
196
  },
182
197
  {
@@ -186,6 +201,7 @@
186
201
  "origin/master"
187
202
  ],
188
203
  "cwd": "[START_DIR]/src",
204
+ "infra_step": true,
189
205
  "name": "my repo rebase"
190
206
  },
191
207
  {
@@ -197,6 +213,7 @@
197
213
  "--all"
198
214
  ],
199
215
  "cwd": "[START_DIR]/src",
216
+ "infra_step": true,
200
217
  "name": "git bundle"
201
218
  },
202
219
  {
@@ -19,6 +19,7 @@
19
19
  "[TMP_BASE]/boom",
20
20
  "gs://example/some/random/path/to/boom"
21
21
  ],
22
+ "infra_step": true,
22
23
  "name": "gsutil upload",
23
24
  "~followup_annotations": [
24
25
  "@@@STEP_LINK@gsutil.upload@https://storage.googleapis.com/example/some/random/path/to/boom@@@"
@@ -45,6 +46,7 @@
45
46
  "[TMP_BASE]/boom",
46
47
  "gs://example/some/random/path/to/boom"
47
48
  ],
49
+ "infra_step": true,
48
50
  "name": "gsutil upload (2)",
49
51
  "~followup_annotations": [
50
52
  "@@@STEP_LINK@gsutil.upload@https://storage.googleapis.com/example/some/random/path/to/boom@@@"
@@ -62,6 +64,7 @@
62
64
  "gs://example/some/random/path/**",
63
65
  "gs://example/staging"
64
66
  ],
67
+ "infra_step": true,
65
68
  "name": "gsutil cp"
66
69
  },
67
70
  {
@@ -78,6 +81,7 @@
78
81
  "gs://example/some/random/path/**",
79
82
  "gs://example/staging"
80
83
  ],
84
+ "infra_step": true,
81
85
  "name": "gsutil cp (2)"
82
86
  },
83
87
  {
@@ -92,6 +96,7 @@
92
96
  "gs://example/some/random/path/to/boom",
93
97
  "[TMP_BASE]/boom"
94
98
  ],
99
+ "infra_step": true,
95
100
  "name": "gsutil gsutil download url"
96
101
  },
97
102
  {
@@ -106,6 +111,7 @@
106
111
  "gs://example/staging/to/boom",
107
112
  "[TMP_BASE]/erang"
108
113
  ],
114
+ "infra_step": true,
109
115
  "name": "gsutil download"
110
116
  },
111
117
  {
@@ -120,6 +126,7 @@
120
126
  "path/to/key",
121
127
  "gs://example/some/random/path/to/boom"
122
128
  ],
129
+ "infra_step": true,
123
130
  "name": "gsutil signed url"
124
131
  },
125
132
  {
@@ -133,6 +140,7 @@
133
140
  "rm",
134
141
  "gs://example/staging/to/boom"
135
142
  ],
143
+ "infra_step": true,
136
144
  "name": "gsutil remove"
137
145
  },
138
146
  {
@@ -146,6 +154,7 @@
146
154
  "ls",
147
155
  "gs://example/foo"
148
156
  ],
157
+ "infra_step": true,
149
158
  "name": "gsutil list"
150
159
  },
151
160
  {
@@ -160,6 +169,7 @@
160
169
  "gs://example/some/random/path/to/boom",
161
170
  "gs://example/staging/to/boom"
162
171
  ],
172
+ "infra_step": true,
163
173
  "name": "gsutil copy",
164
174
  "~followup_annotations": [
165
175
  "@@@STEP_LINK@gsutil.copy@https://storage.cloud.google.com/example/staging/to/boom@@@"
@@ -176,6 +186,7 @@
176
186
  "cat",
177
187
  "gs://example/foo"
178
188
  ],
189
+ "infra_step": true,
179
190
  "name": "gsutil cat"
180
191
  },
181
192
  {