paleolimbot commented on PR #128: URL: https://github.com/apache/arrow-nanoarrow/pull/128#issuecomment-1447509535
Verified with: ```bash # DOCKER_DEFAULT_PLATFORM=linux/s390x docker run --rm -it -v $(pwd):/arrow-nanoarrow alpine:latest # Packages apk add bash linux-headers git cmake R R-dev g++ gnupg curl # Build Arrow C++ from source curl https://dlcdn.apache.org/arrow/arrow-11.0.0/apache-arrow-11.0.0.tar.gz | \ tar -zxf - mkdir arrow-build && cd arrow-build cmake ../apache-arrow-11.0.0/cpp \ -DARROW_JEMALLOC=OFF -DARROW_SIMD_LEVEL=NONE -DCMAKE_INSTALL_PREFIX=../arrow cmake --build . cmake --install . --prefix=../arrow cd .. # Build + test mkdir build && cd build cmake .. -DNANOARROW_BUILD_TESTS=ON cmake --build . ctest . ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
