Skip to content

Commit

Permalink
updated anaconda build scripts to use conda-build instead of mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
djdunning committed Jan 23, 2024
1 parent c70ad22 commit 7eb6d70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .etc/conda_build_environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ channels:
- defaults
dependencies:
- boa # For building
- conda-build
- anaconda-client # For uploading
2 changes: 1 addition & 1 deletion .github/workflows/build-conda-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
#if: steps.cache.outputs.cache-hit != 'true'
- run: |
if [ ${{ inputs.debug }} = true ] ; then export DEBUG="--debug"; fi;
mamba mambabuild $DEBUG ${{ inputs.recipe_dir }} -e .conda/build_variants.yaml -m ${{ inputs.additional_variant }} --token ${{ secrets.ANACONDA_TOKEN }} --no-test -c fierromechanics -c conda-forge -c nvidia
conda build $DEBUG ${{ inputs.recipe_dir }} -e .conda/build_variants.yaml -m ${{ inputs.additional_variant }} --token ${{ secrets.ANACONDA_TOKEN }} --no-test -c fierromechanics -c conda-forge -c nvidia
continue-on-error: ${{ inputs.debug }}
- name: Setup tmate session
Expand Down

0 comments on commit 7eb6d70

Please sign in to comment.