File tree Expand file tree Collapse file tree 3 files changed +7
-19
lines changed Expand file tree Collapse file tree 3 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -162,12 +162,6 @@ jobs:
162
162
path : libs/openblas*.tar.gz
163
163
164
164
-
uses :
conda-incubator/[email protected]
165
- with :
166
- channels : conda-forge
167
- channel-priority : true
168
- activate-environment : upload
169
- miniforge-version : latest
170
- conda-remove-defaults : true
171
165
172
166
- name : Upload
173
167
# see https://github.com/marketplace/actions/setup-miniconda for why
@@ -176,6 +170,6 @@ jobs:
176
170
env :
177
171
ANACONDA_SCIENTIFIC_PYTHON_UPLOAD : ${{ secrets.ANACONDA_SCIENTIFIC_PYTHON_UPLOAD }}
178
172
run : |
179
- conda install -y anaconda-client
173
+ conda install -y -c conda-forge anaconda-client
180
174
source tools/upload_to_anaconda_staging.sh
181
175
upload_wheels
Original file line number Diff line number Diff line change @@ -164,12 +164,6 @@ jobs:
164
164
python -c "import scipy_openblas32; print(scipy_openblas32.get_pkg_config())"
165
165
166
166
-
uses :
conda-incubator/[email protected]
167
- with :
168
- channels : conda-forge
169
- channel-priority : true
170
- activate-environment : upload
171
- miniforge-version : latest
172
- conda-remove-default : true
173
167
174
168
- name : Upload
175
169
# see https://github.com/marketplace/actions/setup-miniconda for why
@@ -178,6 +172,6 @@ jobs:
178
172
env :
179
173
ANACONDA_SCIENTIFIC_PYTHON_UPLOAD : ${{ secrets.ANACONDA_SCIENTIFIC_PYTHON_UPLOAD }}
180
174
run : |
181
- conda install -y anaconda-client
175
+ conda install -y -c conda-forge anaconda-client
182
176
source tools/upload_to_anaconda_staging.sh
183
177
upload_wheels
Original file line number Diff line number Diff line change @@ -200,7 +200,6 @@ function do_build_lib {
200
200
git config --global --add safe.directory ' *'
201
201
pushd OpenBLAS
202
202
patch_source
203
- echo start building
204
203
if [ " $plat " == " loongarch64" ]; then
205
204
# https://github.com/OpenMathLib/OpenBLAS/blob/develop/.github/workflows/loongarch64.yml#L65
206
205
echo -n > utest/test_dsdot.c
@@ -221,10 +220,11 @@ function do_build_lib {
221
220
BINARY=" $bitness " $interface_flags \
222
221
TARGET=" $target "
223
222
fi
224
- echo ========== gcc =============
225
- which gcc
226
- gcc --version
227
- echo ========== gcc =============
223
+ echo start building
224
+ echo " ========== gcc ============="
225
+ echo gcc path $( which gcc)
226
+ echo gcc version $( gcc --version)
227
+ echo " ========== gcc ============="
228
228
make PREFIX=$BUILD_PREFIX $interface_flags install
229
229
popd
230
230
if [ " $nightly " = " 1" ]; then
You can’t perform that action at this time.
0 commit comments