-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your effort! Do we have default CURL option specified in somewhere?
Yes, you can find it here. There seem to be other issues still, will need to take a look into those as well. |
@lebeg The static build failure was caused by no default CURL option specified. Without |
Sorry, I didn’t understand - you are saying that it wouldn’t work without |
Might be -s. Please put the environment variable into |
@mxnet-label-bot add[pr-awaiting-response] |
@mxnet-label-bot add[CI] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
a31bfbd
to
7d47521
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Changed data.dmlc.ml -> data.mxnet.io * Added retries for downloads * Removed silent mode for explicit failure reporting
@lanking520 Sorry, I think I caused some confusion, I meant the |
I could just change I'm not sure I want to make those changes in this PR. |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" | ||
|
||
download () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome config! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this PR, let's see if we can pass CI this time
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Message came out from here is not right
curl --connect-timeout 10 --max-time 300 --retry-delay 10 --retry 3 --retry-delay 0 --location --silent /~https://github.com/glennrp/libpng/archive/v1.6.34.zip -o -o
mkdir -p data/mnist_data | ||
cd data/mnist_data | ||
|
||
download () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seemed not properly configured the file name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error was from incorrect -o
supplied to the download function.
There are two download() functions here. Can we put that download function in a library type of script and then use it accordingly - to adhere to a DRY (Don't Repeat Yourself) sensibility? The diff seems to be with unzipping activities. I realize one is in 'examples' (cpp-package/example/get_data.sh) and the other under tools (tools/dependencies/make_shared_dependencies.sh) - perhaps these are disparate enough things to warrant a copy and paste - I don't know. Just flagging this. |
Fixes for CI downloads (apache#14504)
* Fixes for data links * Changed data.dmlc.ml -> data.mxnet.io * Added retries for downloads * Removed silent mode for explicit failure reporting * Reworked download scripts
* Fixes for data links * Changed data.dmlc.ml -> data.mxnet.io * Added retries for downloads * Removed silent mode for explicit failure reporting * Reworked download scripts
* Fixes for data links * Changed data.dmlc.ml -> data.mxnet.io * Added retries for downloads * Removed silent mode for explicit failure reporting * Reworked download scripts
when run ci/build.py, there is a error, how let timeout be long? thanks! build.py: 2019-04-24 13:38:36,494Z WARNING Exception: Command '['docker', 'pull', 'mxnetci/build.android_armv7']' timed out after 900 seconds, Retrying in 50 seconds.. |
* Fixes for data links * Changed data.dmlc.ml -> data.mxnet.io * Added retries for downloads * Removed silent mode for explicit failure reporting * Reworked download scripts
Description
Fixed for CI verification builds.
Changes