diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-02-26 20:50:03 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-02-26 20:50:03 -0800 |
commit | 11ab3c648ff3395032d14014e3b138039485d908 (patch) | |
tree | b1907c3746645cb40c4c84c065de6d7257f7ad70 | |
parent | a88839dafb606f07e71e063981bce3302c6031d3 (diff) |
Seems like network in the container takes a moment to work, added a sleep to build_upload_nightly to compensate
-rwxr-xr-x | build_upload_nightly | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build_upload_nightly b/build_upload_nightly index f5f21cb..315983a 100755 --- a/build_upload_nightly +++ b/build_upload_nightly @@ -7,6 +7,7 @@ lxc-start -n "$CONTAINER_NAME" if [ $? -ne 0 ]; then exit $? fi +sleep 10 echo Starting build by $BUILD_USER in $CONTAINER_NAME lxc-attach -n "$CONTAINER_NAME" -- /home/$BUILD_USER/blastem/build_nightly $BUILD_USER > /tmp/build_${name}_out.log if [ $? -ne 0 ]; then |