Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 11 additions & 2 deletions ci/firebase_testlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -28,7 +37,7 @@ def run_firebase_test(apk, results_dir):
[
'gcloud',
'--project',
'flutter-infra',
PROJECT,
'firebase',
'test',
'android',
Expand Down
2 changes: 1 addition & 1 deletion ci/licenses_golden/licenses_third_party
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Signature: dcfd74d659e97884eace387ac5dfbd83
Signature: 5289de264e29f7214aa35b01da2573c3

UNUSED LICENSES:

Expand Down