From 10296b6360de75e49609bdb453677088673358b5 Mon Sep 17 00:00:00 2001 From: Mudita Tandon Date: Thu, 18 Aug 2022 23:38:29 +0530 Subject: [PATCH 1/5] 'Update Dart SDK to 0283de5506a5bd7d0e63e2092bf53ec93adddbd1' --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index c15d9cddc6cd7..1bbaeb6174224 100644 --- a/DEPS +++ b/DEPS @@ -35,7 +35,7 @@ vars = { # Dart is: https://github.com/dart-lang/sdk/blob/main/DEPS. # You can use //tools/dart/create_updated_flutter_deps.py to produce # updated revision list of existing dependencies. - 'dart_revision': '395f6163303984a9012b5dffd66e02f8f3cc5f77', + 'dart_revision': '0283de5506a5bd7d0e63e2092bf53ec93adddbd1', # WARNING: DO NOT EDIT MANUALLY # The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py From 68f0c2c93800fb3c1583d741612c348ef293a443 Mon Sep 17 00:00:00 2001 From: Mudita Tandon Date: Fri, 19 Aug 2022 01:39:16 +0530 Subject: [PATCH 2/5] Updating license number --- ci/licenses_golden/licenses_third_party | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party index ddf0a9ffb82ce..0c9632e5e2bc3 100644 --- a/ci/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,4 +1,4 @@ -Signature: dcfd74d659e97884eace387ac5dfbd83 +Signature: 5289de264e29f7214aa35b01da2573c3 UNUSED LICENSES: From 88f70ac952d052bc85b6a6dd504452504ef640fe Mon Sep 17 00:00:00 2001 From: Mudita Tandon Date: Fri, 19 Aug 2022 12:34:12 +0530 Subject: [PATCH 3/5] Updating license number --- ci/licenses_golden/licenses_third_party | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party index 0c9632e5e2bc3..ddf0a9ffb82ce 100644 --- a/ci/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,4 +1,4 @@ -Signature: 5289de264e29f7214aa35b01da2573c3 +Signature: dcfd74d659e97884eace387ac5dfbd83 UNUSED LICENSES: From e1195c387e197cf665615bf25a4b0f27cc891e2c Mon Sep 17 00:00:00 2001 From: Mudita Tandon Date: Fri, 19 Aug 2022 13:07:40 +0530 Subject: [PATCH 4/5] Updating license number --- ci/licenses_golden/licenses_third_party | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party index ddf0a9ffb82ce..0c9632e5e2bc3 100644 --- a/ci/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,4 +1,4 @@ -Signature: dcfd74d659e97884eace387ac5dfbd83 +Signature: 5289de264e29f7214aa35b01da2573c3 UNUSED LICENSES: From 456521be98d7f7476631bb4c44159cf6a4fc23d1 Mon Sep 17 00:00:00 2001 From: Mudita Tandon Date: Sat, 20 Aug 2022 00:19:50 +0530 Subject: [PATCH 5/5] Matching flutter-3.2-candidate.5 branch changes --- ci/firebase_testlab.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/ci/firebase_testlab.py b/ci/firebase_testlab.py index 36b5d419b6471..92069a7c1f584 100755 --- a/ci/firebase_testlab.py +++ b/ci/firebase_testlab.py @@ -11,7 +11,16 @@ import subprocess import sys -BUCKET = 'gs://flutter_firebase_testlab' +if 'STORAGE_BUCKET' not in os.environ: + print('The GCP storage bucket must be provided as an environment variable.') + sys.exit(1) +BUCKET = os.environ['STORAGE_BUCKET'] + +if 'GCP_PROJECT' not in os.environ: + print('The GCP project must be provided as an environment variable.') + sys.exit(1) +PROJECT = os.environ['GCP_PROJECT'] + script_dir = os.path.dirname(os.path.realpath(__file__)) buildroot_dir = os.path.abspath(os.path.join(script_dir, '..', '..')) out_dir = os.path.join(buildroot_dir, 'out') @@ -28,7 +37,7 @@ def run_firebase_test(apk, results_dir): [ 'gcloud', '--project', - 'flutter-infra', + PROJECT, 'firebase', 'test', 'android',