conda-forge.github.io
conda-forge.github.io copied to clipboard
microarch example: List at least one microarch_level
Deploy Preview for conda-forge-previews ready!
| Name | Link |
|---|---|
| Latest commit | 1b2e31564760e006ad40ba36aa620af2ce993d79 |
| Latest deploy log | https://app.netlify.com/sites/conda-forge-previews/deploys/66588e1e8f4ec700076ef337 |
| Deploy Preview | https://deploy-preview-2197--conda-forge-previews.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Is there a conda-build issue with a reproducer?
Is there a conda-build issue with a reproducer?
Unfortunately, no. I made a brief attempt at creating a minimal reproducer, but did not succeed.
But conda-build was clearly doing something wrong with our build. (It had two of us feedstock maintainers scratching our head.) In lieu of a proper fix, we might spare some folks a headache if they start with an example config that is known to work.
Quoting @mbargull's comment:
As far as I can tell, the only explanation is that
conda-buildhas a bug.It is probably not a bug, but the (IMO, unfortunate) feature of
conda-buildin that it searches for uses of environment variable corresponding to the variant entries in build scripts and thus considersmicroarch_levelas a "used" due to the${microarch_level}in your script. It might suffice to just say${microarch_level:-1}instead in the build script to avoid it.
Thanks