Skip to content

Commit 0334820

Browse files
kouraulcd
authored andcommitted
GH-35695: [CI][Packaging][Conan] Use build missing dependencies instead of defining them individually (#35696)
### Rationale for this change We can't use a prebuilt package for googleapi/cci. ### What changes are included in this PR? Built googleapi/cci by ourselves. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: #35695 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent c12b9d9 commit 0334820

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ci/scripts/conan_build.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ export ARROW_HOME=${source_dir}
2828
export CONAN_HOOK_ERROR_LEVEL=40
2929

3030
conan_args=()
31-
conan_args+=(--build=arrow)
32-
conan_args+=(--build=grpc) # We want to remove this if possible
33-
conan_args+=(--build=grpc-proto) # We want to remove this if possible
31+
conan_args+=(--build=missing)
3432
if [ -n "${ARROW_CONAN_PARQUET:-}" ]; then
3533
conan_args+=(--options arrow:parquet=${ARROW_CONAN_PARQUET})
3634
fi

0 commit comments

Comments
 (0)