Skip to content

Commit 17e1cc1

Browse files
committed
fix some warnings
1 parent 7c87ccb commit 17e1cc1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/posix.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,13 @@ jobs:
161161
name: openblas-${{ matrix.os }}-${{ matrix.PLAT }}-${{ matrix.INTERFACE64 }}-${{ matrix.MB_ML_LIBC }}-${{ matrix.MB_ML_VER }}
162162
path: libs/openblas*.tar.gz
163163

164-
- uses: conda-incubator/setup-miniconda@v3.1.1
164+
- uses: conda-incubator/setup-miniconda@v3.2.0
165165
with:
166166
channels: conda-forge
167167
channel-priority: true
168168
activate-environment: upload
169169
miniforge-version: latest
170+
conda-remove-defaults: true
170171

171172
- name: Upload
172173
# see https://github.com/marketplace/actions/setup-miniconda for why

.github/workflows/windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,13 @@ jobs:
163163
python -m scipy_openblas32
164164
python -c "import scipy_openblas32; print(scipy_openblas32.get_pkg_config())"
165165
166-
- uses: conda-incubator/setup-miniconda@v3.1.1
166+
- uses: conda-incubator/setup-miniconda@v3.2.0
167167
with:
168168
channels: conda-forge
169169
channel-priority: true
170170
activate-environment: upload
171171
miniforge-version: latest
172+
conda-remove-default: true
172173

173174
- name: Upload
174175
# see https://github.com/marketplace/actions/setup-miniconda for why

tools/build_steps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function do_build_lib {
207207
echo "Due to the qemu versions 7.2 causing utest cases to fail,"
208208
echo "the utest dsdot:dsdot_n_1 have been temporarily disabled."
209209
fi
210-
if [ -v dynamic_list ]; then
210+
if [ "$dynamic_list" != "" ]; then
211211
CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
212212
make BUFFERSIZE=20 DYNAMIC_ARCH=1 QUIET_MAKE=1 \
213213
USE_OPENMP=0 NUM_THREADS=64 \

0 commit comments

Comments
 (0)