Update Buildroot Version (flutter/engine#9927)

This will upload the fuchsia artifacts to CIPD
This commit is contained in:
Kaushik Iska 2019-07-18 14:50:27 -07:00 committed by GitHub
parent 51518af101
commit 1271e8defc
2 changed files with 6 additions and 2 deletions

2
DEPS
View File

@ -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
#

View File

@ -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()