Skip to content

Commit fc645b8

Browse files
committed
use more parameters in setup-miniconda
1 parent 2dc6fd7 commit fc645b8

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/posix.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,12 @@ jobs:
131131
name: openblas-${{ matrix.os }}-${{ matrix.PLAT }}-${{ matrix.INTERFACE64 }}-${{ matrix.MB_ML_LIBC }}
132132
path: libs/openblas*.tar.gz
133133

134-
- uses: conda-incubator/setup-miniconda@v3.0.1
134+
- uses: conda-incubator/setup-miniconda@v3.0.4
135135
with:
136+
channels: conda-forge
137+
channel-priority: true
136138
activate-environment: upload
139+
miniforge-version: latest
137140

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

tools/build_steps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function build_lib {
5555
# OSX or manylinux build
5656
#
5757
# Input arg
58-
# plat - one of i686, x86_64
58+
# plat - one of i686, x86_64, arm64
5959
# interface64 - 1 if build with INTERFACE64 and SYMBOLSUFFIX
6060
# nightly - 1 if building for nightlies
6161
#
@@ -103,7 +103,7 @@ function patch_source {
103103
function do_build_lib {
104104
# Build openblas lib
105105
# Input arg
106-
# plat - one of i686, x86_64
106+
# plat - one of i686, x86_64, arm64
107107
# suffix (optional) - suffix for output archive name
108108
# Suffix added with hyphen prefix
109109
# interface64 (optional) - whether to build ILP64 openblas

tools/build_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if [ "${INTERFACE64}" != "1" ]; then
7070
fi
7171

7272
rm -rf dist/*
73-
$PYTHON -m pip wheel -w dist -vv .
73+
$PYTHON -m pip wheel -w dist -v .
7474

7575
if [ $(uname) == "Darwin" ]; then
7676
$PYTHON -m pip install delocate

0 commit comments

Comments
 (0)