Skip to content

Commit

Permalink
had to pin arrow to 15.0.2 to avoid memory bug in latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Apr 3, 2024
1 parent 49d83e2 commit 01f5b8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ RUN git clone https://github.com/Tencent/rapidjson.git && \
# install arrow dependency
RUN git clone https://github.com/apache/arrow.git && \
cd arrow && \
VERSION=`git describe --tags --abbrev=0` && \
git checkout $VERSION && \
# VERSION=`git describe --tags --abbrev=0` && \ ### version apache-arrow-16.0.0.dev is the latest tag and has a double-free memory bug
# git checkout $VERSION && \ ### and arrow does not have releases, only tags, so the last stable tag is 15.0.2 (as of 4/3/24)
git checkout apache-arrow-15.0.2 && \
mkdir -p /build/arrow && \
cd /build/arrow && \
cmake /arrow/cpp -DARROW_PARQUET=ON -DARROW_WITH_ZLIB=ON -DARROW_WITH_SNAPPY=ON -D ARROW_CSV=ON && \
Expand Down
2 changes: 1 addition & 1 deletion targets/slideruleearth-aws/docker/sliderule/libdep.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
arrow: apache-arrow-16.0.0.dev-0-gbb7f584bf
arrow: apache-arrow-15.0.2-0-ge03105efc
gdal: v3.8.4-0-gc2d2a61739
geos: 3.12.1-0-g9a5d0587f
libgeotiff: 1.7.1-0-gbdeff84
Expand Down

0 comments on commit 01f5b8b

Please sign in to comment.