CI_conda #4
This file contains 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: CI_conda | |
on: | |
workflow_dispatch: | |
jobs: | |
build-conda-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup conda | |
uses: s-weigand/setup-conda@v1 | |
with: | |
update-conda: true | |
conda-channels: conda-forge | |
- run: conda --version | |
- run: which python | |
- name: Build conda package | |
run: | | |
export CMAKE_BUILD_PARALLEL_LEVEL=4 | |
conda install -y conda-build | |
conda config --set anaconda_upload False | |
conda build --output-folder . conda |