Merge pull request #1432 from Thrameos/doc-808-numpy-openblas-issue #56
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: conda-bld | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| conda_build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mambaorg/micromamba:2.5.0-alpine3.21 | |
| options: --user root | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build conda package | |
| shell: bash | |
| run: | | |
| eval "$(micromamba shell hook --shell bash)" | |
| micromamba install -y -c conda-forge \ | |
| boa \ | |
| conda-forge-pinning \ | |
| conda-verify | |
| INTERNAL_PREFIX=$(conda info --base) | |
| conda mambabuild project/conda_recipe/ \ | |
| -c conda-forge \ | |
| --variant-config-files "$INTERNAL_PREFIX/conda_build_config.yaml" |