h-vetinari commented on PR #48971: URL: https://github.com/apache/arrow/pull/48971#issuecomment-3802079035
In conda-forge we're [using](https://github.com/conda-forge/arrow-cpp-feedstock/blob/49c72fa52606907260006f0eaaa0ca2b86a82f2f/recipe/bld.bat#L80-L83) a very vanilla approach to testing the library: ```batch :: cmake config etc. cmake --build . --config Release if %ERRORLEVEL% neq 0 exit 1 npm install -g azurite set ARROW_TEST_DATA=%SRC_DIR%\testing\data set PARQUET_TEST_DATA=%SRC_DIR%\cpp\submodules\parquet-testing\data ctest --progress --output-on-failure if %ERRORLEVEL% neq 0 exit 1 ``` which has worked fine so far (and aside from batch->bash is also what we're [using](https://github.com/conda-forge/arrow-cpp-feedstock/blob/49c72fa52606907260006f0eaaa0ca2b86a82f2f/recipe/build.sh#L128-L131) on unix for azureFS support already). -- 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]
