mirror of
https://github.com/wassname/ray.git
synced 2026-07-12 00:33:06 +08:00
Fail build if pyarrow hasn't successfully been built. (#1721)
This commit is contained in:
committed by
Philipp Moritz
parent
75dc106303
commit
d8adfbd440
Vendored
+5
-2
@@ -35,9 +35,12 @@ else
|
||||
fi
|
||||
|
||||
# Download and compile arrow if it isn't already present.
|
||||
if [[ ! -d $TP_DIR/pkg/arrow ]]; then
|
||||
if [[ ! -d $TP_DIR/../python/ray/pyarrow_files/pyarrow ]]; then
|
||||
echo "building arrow"
|
||||
git clone https://github.com/apache/arrow.git "$TP_DIR/build/arrow"
|
||||
|
||||
if [[ ! -d $TP_DIR/build/arrow ]]; then
|
||||
git clone https://github.com/apache/arrow.git "$TP_DIR/build/arrow"
|
||||
fi
|
||||
|
||||
pushd $TP_DIR/build/arrow
|
||||
git fetch origin master
|
||||
|
||||
Reference in New Issue
Block a user