8000 Replace mamba with conda again by bnavigator · Pull Request #1085 · python-control/python-control · GitHub
[go: up one dir, main page]

Skip to content

Replace mamba with conda again #1085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/os-blas-test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
auto-update-conda: false
auto-activate-base: false
- name: Conda build
shell: bash -l {0}
shell: bash -el {0}
run: |
set -e
conda mambabuild conda-recipe
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:

defaults:
run:
shell: bash -l {0}
shell: bash -el {0}

steps:
- name: Checkout Slycot
Expand Down Expand Up @@ -309,22 +309,22 @@ jobs:
set -e
case ${{ matrix.blas_lib }} in
unset ) # the conda-forge default (os dependent)
mamba install libblas libcblas liblapack
conda install libblas libcblas liblapack
;;
Generic )
mamba install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
conda install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
echo "libblas * *netlib" >> $CONDA_PREFIX/conda-meta/pinned
;;
OpenBLAS )
mamba install 'libblas=*=*openblas' openblas
conda install 'libblas=*=*openblas' openblas
echo "libblas * *openblas" >> $CONDA_PREFIX/conda-meta/pinned
;;
Intel10_64lp )
mamba install 'libblas=*=*mkl' mkl
conda install 'libblas=*=*mkl' mkl
echo "libblas * *mkl" >> $CONDA_PREFIX/conda-meta/pinned
;;
esac
mamba install -c ./slycot-conda-pkgs slycot
conda install -c ./slycot-conda-pkgs slycot
conda list
- name: Test with pytest
run: JOBNAME="$JOBNAME" pytest control/tests
Expand Down
Loading
0