Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 6cdc2e8

Browse files
committed
DO NOT SUBMIT local edits to tools/fuchsia/build_fuchsia_artifacts.py
1 parent 53d8372 commit 6cdc2e8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tools/fuchsia/build_fuchsia_artifacts.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222

2323
_script_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), '..'))
2424
_src_root_dir = os.path.join(_script_dir, '..', '..', '..')
25-
_out_dir = os.path.join(_src_root_dir, 'out', 'ci')
25+
#_out_dir = os.path.join(_src_root_dir, 'out', 'ci')
26+
_out_dir = os.path.join(_src_root_dir, 'out')
2627
_bucket_directory = os.path.join(_out_dir, 'fuchsia_bucket')
2728

2829

@@ -72,6 +73,7 @@ def RunGN(variant_dir, flags):
7273
os.path.join('flutter', 'tools', 'gn'),
7374
] + flags)
7475

76+
print(os.path.join(_out_dir, variant_dir))
7577
assert os.path.exists(os.path.join(_out_dir, variant_dir))
7678

7779

tools/fuchsia/build_fuchsia_artifacts_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_read_fuchsia_target_api_level(self):
1111
# It's expected to update this test each time the fuchsia_target_api_level
1212
# in //flutter/build/config/fuchsia/gn_configs.gni is changed, so we don't
1313
# accidentally publish the artifacts with an incorrect api level suffix.
14-
self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '18')
14+
self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '20')
1515

1616

1717
if __name__ == '__main__':

0 commit comments

Comments
 (0)