Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipe/migrations/arm_variant_type.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ __migrator:
```yaml
context:
# ensure arm_variant_type gets detected as a used variable
touch_arm_variant_type: ${{ arm_variant_type }}
touch_arm_variant_type: ${{ arm_variant_type if (linux and aarch64 and cuda_compiler_version != "None") else "None" }}
Comment on lines 53 to +55
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a cleaner way in v1 recipes that I hadn't been aware of until very recently, which might be preferable

build:
  variant:
    # ensure arm_variant_type gets detected as a used variable
    use_keys:
      - arm_variant_type

or, with the new, stricter rattler-build, probably also behind a if: linux and aarch64 and cuda_compiler_version != "None" guard.

```

Please read the conda-forge CUDA recipe guide for more information:
Expand Down