commit | e2f01004281b53f34f0fc0b0c29534481df2b966 | [log] [tgz] |
---|---|---|
author | Godofredo Contreras <godofredoc@google.com> | Fri Dec 09 22:03:47 2022 +0000 |
committer | CQ Bot Account <flutter-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Dec 09 22:03:47 2022 +0000 |
tree | 6354e3576bcac33c0dbc93245c770000031ca6bd | |
parent | 9b651142b4907e93b872e841c82cf1ada04fd078 [diff] |
Skip bcid stage reporting in windows. BCID tooling for windows is not avaialable yet. Bug: https://github.com/flutter/flutter/issues/116805 Change-Id: I5dac214c06ecd61fc1b253df6b2a3e45a9f5bffe Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/37123 Reviewed-by: Drew Roen <drewroen@google.com> Commit-Queue: Godofredo Contreras <godofredoc@google.com>
diff --git a/recipe_modules/flutter_bcid/api.py b/recipe_modules/flutter_bcid/api.py index 89018e9..6216dc2 100644 --- a/recipe_modules/flutter_bcid/api.py +++ b/recipe_modules/flutter_bcid/api.py
@@ -26,7 +26,11 @@ return bucket == 'flutter' def report_stage(self, stage): - if self._is_official_build(): + if (self._is_official_build() and + # TODO(jseales): Uncomment next line after windows + # can generate provenance succesfully + # https://github.com/flutter/flutter/issues/116749 + not self.m.platform.is_win): self.m.bcid_reporter.report_stage(stage) def upload_provenance(self, local_artifact_path, remote_artifact_path):