mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-14 20:58:10 +00:00
BLD: Use slightly less flexible regex for conda build output
Hoping not to match commit messages. Shouldn't match this message at least (like it did the previous).
This commit is contained in:
parent
c1817d61f9
commit
4002a03567
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ script:
|
|||
# unshallow the clone so the conda build can clone it.
|
||||
- git fetch --unshallow
|
||||
- exec 3>&1; ZP_OUT=$(conda build conda/zipline --python=$CONDA_PY --numpy=$CONDA_NPY -c quantopian -c quantopian/label/ci | tee >(cat - >&3))
|
||||
- ZP_OUTPUT=$(echo "$ZP_OUT" | grep "anaconda upload" | awk '{print $NF}')
|
||||
- ZP_OUTPUT=$(echo "$ZP_OUT" | grep "anaconda upload " | awk '{print $NF}')
|
||||
- if [ -z "$ZP_OUTPUT" ]; then exit 1; fi
|
||||
- if [[ "$DO_UPLOAD" = "true" ]]; then anaconda -t $ANACONDA_TOKEN upload $ZP_OUTPUT -u quantopian --label ci; fi
|
||||
# reactivate env (necessary for coveralls)
|
||||
|
|
|
|||
Loading…
Reference in a new issue