File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130
130
auto-update-conda : false
131
131
auto-activate-base : false
132
132
- name : Conda build
133
- shell : bash -l {0}
133
+ shell : bash -el {0}
134
134
run : |
135
135
set -e
136
136
conda mambabuild conda-recipe
@@ -277,7 +277,7 @@ jobs:
277
277
278
278
defaults :
279
279
run :
280
- shell : bash -l {0}
280
+ shell : bash -el {0}
281
281
282
282
steps :
283
283
- name : Checkout Slycot
@@ -309,22 +309,22 @@ jobs:
309
309
set -e
310
310
case ${{ matrix.blas_lib }} in
311
311
unset ) # the conda-forge default (os dependent)
312
- mamba install libblas libcblas liblapack
312
+ conda install libblas libcblas liblapack
313
313
;;
314
314
Generic )
315
- mamba install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
315
+ conda install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
316
316
echo "libblas * *netlib" >> $CONDA_PREFIX/conda-meta/pinned
317
317
;;
318
318
OpenBLAS )
319
- mamba install 'libblas=*=*openblas' openblas
319
+ conda install 'libblas=*=*openblas' openblas
320
320
echo "libblas * *openblas" >> $CONDA_PREFIX/conda-meta/pinned
321
321
;;
322
322
Intel10_64lp )
323
- mamba install 'libblas=*=*mkl' mkl
323
+ conda install 'libblas=*=*mkl' mkl
324
324
echo "libblas * *mkl" >> $CONDA_PREFIX/conda-meta/pinned
325
325
;;
326
326
esac
327
- mamba install -c ./slycot-conda-pkgs slycot
327
+ conda install -c ./slycot-conda-pkgs slycot
328
328
conda list
329
329
- name : Test with pytest
330
330
run : JOBNAME="$JOBNAME" pytest control/tests
You can’t perform that action at this time.
0 commit comments