Skip to content

CI_conda

CI_conda #4

Workflow file for this run

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