Skip to content

Commit

Permalink
trying libmamba solver w/o disabling priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
pluflou committed Aug 8, 2023
1 parent d8c67a8 commit 796340e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Install the Mamba Dependencies
run: |
conda config --set always_yes yes --set auto_update_conda false --set channel_priority disabled
conda config --set always_yes yes --set auto_update_conda false
conda update conda
conda install mamba -n base -c conda-forge
conda install -n base conda-libmamba-solver
Expand All @@ -67,7 +67,7 @@ jobs:
id: mambabuild
run: |
mamba install anaconda-client
conda config --set anaconda_upload no --set channel_priority disabled --set solver libmamba
conda config --set anaconda_upload no --set solver libmamba
echo yes | anaconda login --username ${{ secrets.ANACONDA_CLOUD_USERNAME }} --password ${{ secrets.ANACONDA_CLOUD_PASSWORD }}
git fetch --prune --unshallow --tags
VERSION_FROM_GIT_TAG=$(git tag --list "v*[0-9]" --sort=version:refname | tail -1 | cut -c 2-) conda build . -c mosek -c anaconda -c pvlib -c slacgismo -c conda-forge --numpy 1.22.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Install the Mamba Dependencies
run: |
conda config --set always_yes yes --set auto_update_conda false --set channel_priority disabled
conda config --set always_yes yes --set auto_update_conda false
conda update conda
conda install mamba -n base -c conda-forge
conda install -n base conda-libmamba-solver
Expand All @@ -64,7 +64,7 @@ jobs:
id: mambabuild
run: |
mamba install anaconda-client
conda config --set anaconda_upload no --set channel_priority disabled --set solver libmamba
conda config --set anaconda_upload no --set solver libmamba
git fetch --prune --unshallow --tags
VERSION_FROM_GIT_TAG=$(git tag --list "v*[0-9]" --sort=version:refname | tail -1 | cut -c 2-)test conda build . -c mosek -c anaconda -c pvlib -c slacgismo -c conda-forge --numpy 1.22.0
echo '::set-output name=gitversion::$(git tag --list "v*[0-9]" --sort=version:refname | tail -1 | cut -c 2-)'

0 comments on commit 796340e

Please sign in to comment.