Skip to content

Commit 183baf2

Browse files
committed
more debugging, warnings
1 parent 17e1cc1 commit 183baf2

File tree

3 files changed

+7
-19
lines changed

3 files changed

+7
-19
lines changed

.github/workflows/posix.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,6 @@ jobs:
162162
path: libs/openblas*.tar.gz
163163

164164
- 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
171165

172166
- name: Upload
173167
# see https://github.com/marketplace/actions/setup-miniconda for why
@@ -176,6 +170,6 @@ jobs:
176170
env:
177171
ANACONDA_SCIENTIFIC_PYTHON_UPLOAD: ${{ secrets.ANACONDA_SCIENTIFIC_PYTHON_UPLOAD }}
178172
run: |
179-
conda install -y anaconda-client
173+
conda install -y -c conda-forge anaconda-client
180174
source tools/upload_to_anaconda_staging.sh
181175
upload_wheels

.github/workflows/windows.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,6 @@ jobs:
164164
python -c "import scipy_openblas32; print(scipy_openblas32.get_pkg_config())"
165165
166166
- 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
173167

174168
- name: Upload
175169
# see https://github.com/marketplace/actions/setup-miniconda for why
@@ -178,6 +172,6 @@ jobs:
178172
env:
179173
ANACONDA_SCIENTIFIC_PYTHON_UPLOAD: ${{ secrets.ANACONDA_SCIENTIFIC_PYTHON_UPLOAD }}
180174
run: |
181-
conda install -y anaconda-client
175+
conda install -y -c conda-forge anaconda-client
182176
source tools/upload_to_anaconda_staging.sh
183177
upload_wheels

tools/build_steps.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ function do_build_lib {
200200
git config --global --add safe.directory '*'
201201
pushd OpenBLAS
202202
patch_source
203-
echo start building
204203
if [ "$plat" == "loongarch64" ]; then
205204
# https://github.com/OpenMathLib/OpenBLAS/blob/develop/.github/workflows/loongarch64.yml#L65
206205
echo -n > utest/test_dsdot.c
@@ -221,10 +220,11 @@ function do_build_lib {
221220
BINARY="$bitness" $interface_flags \
222221
TARGET="$target"
223222
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 ============="
228228
make PREFIX=$BUILD_PREFIX $interface_flags install
229229
popd
230230
if [ "$nightly" = "1" ]; then

0 commit comments

Comments
 (0)