未验证 提交 ad5ae0f2 编写于 作者: K Kaushik Iska 提交者: GitHub

Update Buildroot Version (#9927)

This will upload the fuchsia artifacts to CIPD
上级 f20e9350
......@@ -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()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册