No L-G-T-M from a valid reviewer yet. CQ run can only be started by full ...
4 years, 3 months ago
(2016-08-31 21:00:28 UTC)
#5
No L-G-T-M from a valid reviewer yet.
CQ run can only be started by full committers or once the patch has
received an L-G-T-M from a full committer.
Even if an L-G-T-M may have been provided, it was from a non-committer,
_not_ a full super star committer.
Committers are members of the group "project-infra-committers".
Note that this has nothing to do with OWNERS files.
Michael Moss
LGTM. Any link or more detail about the error?
4 years, 3 months ago
(2016-08-31 21:01:37 UTC)
#6
LGTM.
Any link or more detail about the error?
chromium-reviews
Yes. I accidentally forgot to change a flag name in one of the files. Should ...
4 years, 3 months ago
(2016-08-31 21:04:05 UTC)
#7
Yes. I accidentally forgot to change a flag name in one of the files.
Should I go ahead and fix the change and resubmit?
zip_build.py: error: no such option: --not-include-extra
@@@STEP_CURSOR@package build for bisect@@@
step returned non-zero exit code: 2
@@@STEP_EXCEPTION@@@
On Wed, Aug 31, 2016 at 2:01 PM, <mmoss@chromium.org> wrote:
> LGTM.
>
> Any link or more detail about the error?
>
> https://codereview.chromium.org/2303433002/
>
--
You received this message because you are subscribed to the Google Groups
"Chromium-reviews" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to chromium-reviews+unsubscribe@chromium.org.
Michael Moss
On 2016/08/31 21:04:05, chromium-reviews wrote: > Yes. I accidentally forgot to change a flag name ...
4 years, 3 months ago
(2016-08-31 21:16:10 UTC)
#8
On 2016/08/31 21:04:05, chromium-reviews wrote:
> Yes. I accidentally forgot to change a flag name in one of the files.
>
> Should I go ahead and fix the change and resubmit?
Yeah, seems pretty straightforward.
miimnk
The CQ bit was checked by miimnk@google.com to run a CQ dry run
4 years, 3 months ago
(2016-08-31 21:28:59 UTC)
#9
Failed to apply patch for scripts/slave/recipe_modules/archive/api.py: While running git apply --index -3 -p1; <stdin>:20: trailing ...
4 years, 3 months ago
(2016-08-31 21:31:30 UTC)
#17
Failed to apply patch for scripts/slave/recipe_modules/archive/api.py:
While running git apply --index -3 -p1;
<stdin>:20: trailing whitespace.
update_properties=None, store_by_hash=True,
error: patch failed: scripts/slave/recipe_modules/archive/api.py:3
Falling back to three-way merge...
Applied patch to 'scripts/slave/recipe_modules/archive/api.py' with conflicts.
U scripts/slave/recipe_modules/archive/api.py
warning: 1 line adds whitespace errors.
Patch: scripts/slave/recipe_modules/archive/api.py
Index: scripts/slave/recipe_modules/archive/api.py
diff --git a/scripts/slave/recipe_modules/archive/api.py
b/scripts/slave/recipe_modules/archive/api.py
index
bdf1c40b33f73b139539bc815ed134901697354d..fc1bde7aa6957200d4039be3c09666846b8c2a6d
100644
--- a/scripts/slave/recipe_modules/archive/api.py
+++ b/scripts/slave/recipe_modules/archive/api.py
@@ -3,6 +3,8 @@
# found in the LICENSE file.
import re
+import sys
+
import manual_bisect_files
from recipe_engine import recipe_api
@@ -92,7 +94,8 @@ class ArchiveApi(recipe_api.RecipeApi):
self, step_name, target, build_url=None, src_dir=None,
build_revision=None, cros_board=None, package_dsym_files=False,
exclude_files=None, exclude_perf_test_files=False,
- update_properties=None, store_by_hash=True, **kwargs):
+ update_properties=None, store_by_hash=True,
+ platform=None, **kwargs):
"""Returns a step invoking zip_build.py to zip up a Chromium build.
If build_url is specified, also uploads the build."""
if not src_dir:
@@ -121,12 +124,23 @@ class ArchiveApi(recipe_api.RecipeApi):
args.extend(['--exclude-files', exclude_files])
if 'gs_acl' in self.m.properties:
args.extend(['--gs-acl', self.m.properties['gs_acl']])
- if exclude_perf_test_files:
- inclusions = ','.join(manual_bisect_files.CHROME_REQUIRED_FILES)
- strip_files = ','.join(manual_bisect_files.CHROME_STRIP_LIST)
- args.extend(['--include-files', inclusions])
- args.extend(['--ignore-regex'])
- args.extend(['--strip-files', strip_files])
+ if exclude_perf_test_files and platform:
+ include_bisect_file_list = (
+ manual_bisect_files.CHROME_REQUIRED_FILES.get(platform))
+ include_bisect_strip_list = (
+ manual_bisect_files.CHROME_STRIP_LIST.get(platform))
+ include_bisect_whitelist = (
+ manual_bisect_files.CHROME_WHITELIST_FILES.get(platform))
+ if include_bisect_file_list:
+ inclusions = ','.join(include_bisect_file_list)
+ args.extend(['--include-files', inclusions])
+ if include_bisect_strip_list:
+ strip_files = ','.join(include_bisect_strip_list)
+ args.extend(['--strip-files', strip_files])
+ if include_bisect_whitelist:
+ args.extend(['--whitelist', include_bisect_whitelist])
+ args.extend(['--exclude-extra'])
+
# If update_properties is passed in and store_by_hash is False,
# we store it with commit position number instead of a hash
if update_properties and not store_by_hash:
miimnk
The CQ bit was checked by miimnk@google.com
4 years, 3 months ago
(2016-08-31 21:33:45 UTC)
#18
Failed to apply patch for scripts/slave/recipe_modules/archive/api.py: While running git apply --index -3 -p1; error: patch ...
4 years, 3 months ago
(2016-08-31 21:33:57 UTC)
#22
Failed to apply patch for scripts/slave/recipe_modules/archive/api.py:
While running git apply --index -3 -p1;
error: patch failed: scripts/slave/recipe_modules/archive/api.py:3
Falling back to three-way merge...
Applied patch to 'scripts/slave/recipe_modules/archive/api.py' with conflicts.
U scripts/slave/recipe_modules/archive/api.py
Patch: scripts/slave/recipe_modules/archive/api.py
Index: scripts/slave/recipe_modules/archive/api.py
diff --git a/scripts/slave/recipe_modules/archive/api.py
b/scripts/slave/recipe_modules/archive/api.py
index
bdf1c40b33f73b139539bc815ed134901697354d..6ef85a7beee5dfcab058a80448613c74f82f2a05
100644
--- a/scripts/slave/recipe_modules/archive/api.py
+++ b/scripts/slave/recipe_modules/archive/api.py
@@ -3,6 +3,8 @@
# found in the LICENSE file.
import re
+import sys
+
import manual_bisect_files
from recipe_engine import recipe_api
@@ -92,7 +94,8 @@ class ArchiveApi(recipe_api.RecipeApi):
self, step_name, target, build_url=None, src_dir=None,
build_revision=None, cros_board=None, package_dsym_files=False,
exclude_files=None, exclude_perf_test_files=False,
- update_properties=None, store_by_hash=True, **kwargs):
+ update_properties=None, store_by_hash=True,
+ platform=None, **kwargs):
"""Returns a step invoking zip_build.py to zip up a Chromium build.
If build_url is specified, also uploads the build."""
if not src_dir:
@@ -121,12 +124,23 @@ class ArchiveApi(recipe_api.RecipeApi):
args.extend(['--exclude-files', exclude_files])
if 'gs_acl' in self.m.properties:
args.extend(['--gs-acl', self.m.properties['gs_acl']])
- if exclude_perf_test_files:
- inclusions = ','.join(manual_bisect_files.CHROME_REQUIRED_FILES)
- strip_files = ','.join(manual_bisect_files.CHROME_STRIP_LIST)
- args.extend(['--include-files', inclusions])
- args.extend(['--ignore-regex'])
- args.extend(['--strip-files', strip_files])
+ if exclude_perf_test_files and platform:
+ include_bisect_file_list = (
+ manual_bisect_files.CHROME_REQUIRED_FILES.get(platform))
+ include_bisect_strip_list = (
+ manual_bisect_files.CHROME_STRIP_LIST.get(platform))
+ include_bisect_whitelist = (
+ manual_bisect_files.CHROME_WHITELIST_FILES.get(platform))
+ if include_bisect_file_list:
+ inclusions = ','.join(include_bisect_file_list)
+ args.extend(['--include-files', inclusions])
+ if include_bisect_strip_list:
+ strip_files = ','.join(include_bisect_strip_list)
+ args.extend(['--strip-files', strip_files])
+ if include_bisect_whitelist:
+ args.extend(['--whitelist', include_bisect_whitelist])
+ args.extend(['--exclude-extra'])
+
# If update_properties is passed in and store_by_hash is False,
# we store it with commit position number instead of a hash
if update_properties and not store_by_hash:
miimnk
The CQ bit was checked by miimnk@google.com to run a CQ dry run
4 years, 3 months ago
(2016-08-31 21:40:00 UTC)
#23
Issue 2303433002: Revert of lightweight builds archiving for mac and win64
(Closed)
Created 4 years, 3 months ago by miimnk
Modified 4 years, 3 months ago
Reviewers: dimu, dtu, ghost stip (do not use), Michael Moss
Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Comments: 0