kou commented on PR #39729:
URL: https://github.com/apache/arrow/pull/39729#issuecomment-1905023585
Does this work?
```diff
diff --git a/ci/scripts/conan_build.sh b/ci/scripts/conan_build.sh
index b1ee0a8fc2..c1862c16f1 100755
--- a/ci/scripts/conan_build.sh
+++ b/ci/scripts/conan_build.sh
@@ -30,34 +30,34 @@ export CONAN_HOOK_ERROR_LEVEL=40
conan_args=()
conan_args+=(--build=missing)
if [ -n "${ARROW_CONAN_PARQUET:-}" ]; then
- conan_args+=(--options arrow:parquet=${ARROW_CONAN_PARQUET})
+ conan_args+=(--options "arrow/*:parquet=${ARROW_CONAN_PARQUET}")
fi
if [ -n "${ARROW_CONAN_WITH_BROTLI:-}" ]; then
- conan_args+=(--options arrow:with_brotli=${ARROW_CONAN_WITH_BROTLI})
+ conan_args+=(--options "arrow/*:with_brotli=${ARROW_CONAN_WITH_BROTLI}")
fi
if [ -n "${ARROW_CONAN_WITH_BZ2:-}" ]; then
- conan_args+=(--options arrow:with_bz2=${ARROW_CONAN_WITH_BZ2})
+ conan_args+=(--options "arrow/*:with_bz2=${ARROW_CONAN_WITH_BZ2}")
fi
if [ -n "${ARROW_CONAN_WITH_FLIGHT_RPC:-}" ]; then
- conan_args+=(--options
arrow:with_flight_rpc=${ARROW_CONAN_WITH_FLIGHT_RPC})
+ conan_args+=(--options
"arrow/*:with_flight_rpc=${ARROW_CONAN_WITH_FLIGHT_RPC}")
fi
if [ -n "${ARROW_CONAN_WITH_GLOG:-}" ]; then
- conan_args+=(--options arrow:with_glog=${ARROW_CONAN_WITH_GLOG})
+ conan_args+=(--options "arrow/*:with_glog=${ARROW_CONAN_WITH_GLOG}")
fi
if [ -n "${ARROW_CONAN_WITH_JEMALLOC:-}" ]; then
- conan_args+=(--options arrow:with_jemalloc=${ARROW_CONAN_WITH_JEMALLOC})
+ conan_args+=(--options
"arrow/*:with_jemalloc=${ARROW_CONAN_WITH_JEMALLOC}")
fi
if [ -n "${ARROW_CONAN_WITH_JSON:-}" ]; then
- conan_args+=(--options arrow:with_json=${ARROW_CONAN_WITH_JSON})
+ conan_args+=(--options "arrow/*:with_json=${ARROW_CONAN_WITH_JSON}")
fi
if [ -n "${ARROW_CONAN_WITH_LZ4:-}" ]; then
- conan_args+=(--options arrow:with_lz4=${ARROW_CONAN_WITH_LZ4})
+ conan_args+=(--options "arrow/*:with_lz4=${ARROW_CONAN_WITH_LZ4}")
fi
if [ -n "${ARROW_CONAN_WITH_SNAPPY:-}" ]; then
- conan_args+=(--options arrow:with_snappy=${ARROW_CONAN_WITH_SNAPPY})
+ conan_args+=(--options "arrow/*:with_snappy=${ARROW_CONAN_WITH_SNAPPY}")
fi
if [ -n "${ARROW_CONAN_WITH_ZSTD:-}" ]; then
- conan_args+=(--options arrow:with_zstd=${ARROW_CONAN_WITH_ZSTD})
+ conan_args+=(--options "arrow/*:with_zstd=${ARROW_CONAN_WITH_ZSTD}")
fi
version=$(grep '^set(ARROW_VERSION ' ${ARROW_HOME}/cpp/CMakeLists.txt | \
```
--
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]