Skip to content

Commit

Permalink
Use only one skip to make conda-souschef happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Dec 13, 2024
1 parent 54995a7 commit d0788e8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ source:

build:
number: 2
{% if not (environ.get("cuda_compiler_version")|string()) == (major_version|string()) %}
skip: true
{% endif %}
# `linux_ppc64le` is unsupported by the CUDA Toolkit as of 12.5.0.
# So skip building `cuda-python` on `linux_ppc64le`
# xref: https://github.com/conda-forge/cuda-feedstock/issues/27
skip: true # [ppc64le]
{% if ppc64le or not (environ.get("cuda_compiler_version")|string()) == (major_version|string()) %}
skip: true
{% endif %}
script:
- pushd cuda_bindings
- {{ PYTHON }} -m pip install . --no-deps -vv
Expand Down

0 comments on commit d0788e8

Please sign in to comment.