Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 81ebd3c

Browse files
authored
Merge pull request #89 from mattip/v0.3.21
create OpenBLAS v0.3.21 builds
2 parents 755fddd + 9d70422 commit 81ebd3c

File tree

5 files changed

+25
-16
lines changed

5 files changed

+25
-16
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Windows build
1+
name: Win
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77
branches: [ master ]
88

99
env:
10-
OPENBLAS_COMMIT: "bfd9c1b58cd3"
10+
OPENBLAS_COMMIT: "v0.3.21"
1111
OPENBLAS_ROOT: "c:\\opt"
1212
# Preserve working directory for calls into bash
1313
CHERE_INVOKING: "yes"
@@ -73,9 +73,13 @@ jobs:
7373
with:
7474
path: builds/openblas*.zip
7575

76+
- uses: conda-incubator/setup-miniconda@v2
77+
with:
78+
activate-environment: upload
79+
7680
- name: Upload
7781
env:
7882
OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN: ${{ secrets.MULTIBUILD_WHEELS_STAGING_ACCESS }}
7983
run: |
80-
pip install -q git+https://github.com/Anaconda-Platform/anaconda-client@1.8.0
84+
conda install anaconda-client
8185
& $env:BASH_PATH -lc tools/upload_to_anaconda_staging.sh

.github/workflows/multibuild.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linux,macOS build
1+
name: multibuild
22

33
on:
44
push:
@@ -15,17 +15,17 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
18+
os: [ubuntu-latest, macos-11]
1919
platform: [x64]
2020
PLAT: [i686, x86_64]
2121
INTERFACE64: ['', '1']
2222
MB_ML_VER: ['', 2010, 2014]
2323
include:
24-
- os: macos-latest
24+
- os: macos-11
2525
PLAT: arm64
2626
INTERFACE64: '1'
2727
platform: [x64]
28-
- os: macos-latest
28+
- os: macos-11
2929
PLAT: arm64
3030
INTERFACE64: ''
3131
platform: [x64]
@@ -42,17 +42,17 @@ jobs:
4242
MB_ML_VER: _1_1
4343
platform: [x64]
4444
exclude:
45-
- os: macos-latest
45+
- os: macos-11
4646
PLAT: i686
47-
- os: macos-latest
47+
- os: macos-11
4848
MB_ML_VER: 2010
49-
- os: macos-latest
49+
- os: macos-11
5050
MB_ML_VER: 2014
5151
- PLAT: i686
5252
INTERFACE64: '1'
5353
env:
5454
REPO_DIR: OpenBLAS
55-
OPENBLAS_COMMIT: "bfd9c1b58cd3"
55+
OPENBLAS_COMMIT: "v0.3.21"
5656
MACOSX_DEPLOYMENT_TARGET: 10.9
5757
MB_PYTHON_VERSION: ${{ matrix.python-version }}
5858
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
@@ -75,8 +75,13 @@ jobs:
7575
python-version: 3.8
7676
- name: Set extra env
7777
run: |
78-
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
79-
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "LDFLAGS=-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV; fi
78+
if [ "macos-11" == "${{ matrix.os }}" ]; then
79+
echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV;
80+
echo "LDFLAGS=-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV;
81+
echo "LIBRARY_PATH=-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV;
82+
else
83+
echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV;
84+
fi
8085
echo "DOCKER_TEST_IMAGE=$(echo multibuild/xenial_${{ matrix.PLAT}})" >> $GITHUB_ENV;
8186
- name: Print some Environment variable
8287
run: |

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ env:
22
global:
33
# The archive that gets built has name from ``git describe`` on this
44
# commit.
5-
- OPENBLAS_COMMIT="bfd9c1b58cd3"
5+
- OPENBLAS_COMMIT="v0.3.21"
66
- REPO_DIR=OpenBLAS
77
# Following generated with:
88
# travis encrypt -r MacPython/openblas-libs OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN=<secret token value>

OpenBLAS

0 commit comments

Comments
 (0)