Skip to content

Commit

Permalink
debug: skip everything but pypy; skip CUDA-on-aarch64; don't emulate …
Browse files Browse the repository at this point in the history
…but x-compile
  • Loading branch information
h-vetinari committed Sep 17, 2022
1 parent a543b4f commit d54f77b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ bot:
- 7.0.x
- 8.0.x
build_platform:
linux_aarch64: linux_64
linux_ppc64le: linux_64
osx_arm64: osx_64
conda_forge_output_validation: true
Expand Down
4 changes: 3 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ source:
- patches/0001-ARROW-17433-CI-C-Use-Visual-Studio-2019-on-AppVeyor-.patch

build:
# debug
skip: true # [python_impl != "pypy"]
number: 6
# 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.
Expand All @@ -27,7 +29,7 @@ build:
# CUDA builds on ppc64le currently run out of time on Travis CI.
# It may be possible to move these to cross-compilation, but this will take additional work.
# Hence this is skipped for now until this can be addressed.
skip: true # [linux and ppc64le and cuda_compiler_version != "None"]
skip: true # [linux and (aarch64 or ppc64le) and cuda_compiler_version != "None"]
run_exports:
- {{ pin_subpackage("arrow-cpp", max_pin="x.x.x") }}

Expand Down

0 comments on commit d54f77b

Please sign in to comment.