From eb770992ac4c13e6df2a433779d63f5c1b10d893 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Tue, 29 Nov 2022 22:34:40 +1100 Subject: [PATCH] TEMP: skip CUDA on aarch64 until we can cross-compile --- recipe/meta.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 54d8a26b3..174a31d43 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -28,6 +28,9 @@ build: # for cuda support, building with one version is enough to be compatible with # all later versions, since arrow is only using libcuda, and not libcudart. skip: true # [cuda_compiler_version not in ("None", cuda_compiler_version_min)] + # temporary: skip CUDA on aarch/ppc until cross-compilation works, see + # https://github.com/conda-forge/conda-forge-ci-setup-feedstock/pull/210 + skip: true # [(aarch64 or ppc64le) and (cuda_compiler_version != "None")] run_exports: - {{ pin_subpackage("libarrow", max_pin="x.x.x") }}