mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Update Buildroot Version (flutter/engine#9927)
This will upload the fuchsia artifacts to CIPD
This commit is contained in:
parent
51518af101
commit
1271e8defc
2
DEPS
2
DEPS
@ -124,7 +124,7 @@ allowed_hosts = [
|
||||
]
|
||||
|
||||
deps = {
|
||||
'src': 'https://github.com/flutter/buildroot.git' + '@' + '9d22a70a56c948476256c4a7f3ad26ad32e4a548',
|
||||
'src': 'https://github.com/flutter/buildroot.git' + '@' + '3c8e427128687be69576d68886d7e555bbd89253',
|
||||
|
||||
# Fuchsia compatibility
|
||||
#
|
||||
|
||||
@ -384,7 +384,11 @@ def main(argv):
|
||||
'asm',
|
||||
]
|
||||
|
||||
contents = subprocess.check_output(compile_cmd_gen_cmd, cwd=SRC_ROOT)
|
||||
try:
|
||||
contents = subprocess.check_output(compile_cmd_gen_cmd, cwd=SRC_ROOT)
|
||||
except subprocess.CalledProcessError as exc:
|
||||
print "Failed to run ninja: ", exc.returncode, exc.output
|
||||
sys.exit(1)
|
||||
compile_commands = open('%s/out/compile_commands.json' % SRC_ROOT, 'w+')
|
||||
compile_commands.write(contents)
|
||||
compile_commands.close()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user