This is an automated email from the ASF dual-hosted git repository.
wkcn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 381a9da Print reproduction command on CI failure (#14815)
381a9da is described below
commit 381a9da4b935bc8b6046088c614a802226e08e87
Author: Pedro Larroy <[email protected]>
AuthorDate: Wed May 1 19:03:52 2019 -0700
Print reproduction command on CI failure (#14815)
---
ci/build.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/build.py b/ci/build.py
index 1c7a4f8..3d6fb9b 100755
--- a/ci/build.py
+++ b/ci/build.py
@@ -331,6 +331,7 @@ def container_run(platform: str,
ret = wait_result.get('StatusCode', 200)
if ret != 0:
logging.error("Container exited with an error 😞")
+ logging.info("Executed command for reproduction:\n\n%s\n",
" ".join(sys.argv))
else:
logging.info("Container exited with success 👍")
except Exception as e: