Skip to content

Commit

Permalink
BLD Add prebuild script
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Mar 7, 2019
1 parent 2f95af6 commit df1a21b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/cpu/cudf/upload-anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ if [ "$BUILD_CUDF" == "1" ]; then

echo "Upload"
echo ${UPLOADFILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u rapidsai ${LABEL_OPTION} --force ${UPLOADFILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-rapidsai} ${LABEL_OPTION} --force ${UPLOADFILE}
fi
2 changes: 1 addition & 1 deletion ci/cpu/libcudf/upload-anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ fi

echo "Upload"
echo ${UPLOADFILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u rapidsai ${LABEL_OPTION} --force ${UPLOADFILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-rapidsai} ${LABEL_OPTION} --force ${UPLOADFILE}
11 changes: 11 additions & 0 deletions ci/cpu/prebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

export BUILD_ABI=1
export BUILD_CUDF=1
export BUILD_CFFI=1

if [[ "$PYTHON" == "3.6" ]]; then
export BUILD_LIBCUDF=1
else
export BUILD_LIBCUDF=0
fi

0 comments on commit df1a21b

Please sign in to comment.