Skip to content

Commit cc2dc50

Browse files
authored
Merge pull request #69 from DWesl/update-openblas-0.3.19
Use OpenBLAS v0.3.19
2 parents 4021de8 + 6dc594b commit cc2dc50

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
branches: [ master ]
1414

1515
env:
16-
OPENBLAS_COMMIT: "v0.3.18"
16+
OPENBLAS_COMMIT: "v0.3.19"
1717
OPENBLAS_ROOT: "c:\\opt"
1818

1919
jobs:

.github/workflows/multibuild.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
INTERFACE64: '1'
4141
env:
4242
REPO_DIR: OpenBLAS
43-
OPENBLAS_COMMIT: "v0.3.18"
43+
OPENBLAS_COMMIT: "v0.3.19"
4444
MACOSX_DEPLOYMENT_TARGET: 10.9
4545
MB_PYTHON_VERSION: ${{ matrix.python-version }}
4646
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
@@ -63,6 +63,7 @@ jobs:
6363
- name: Set extra env
6464
run: |
6565
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
66+
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "LDFLAGS=-L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV; fi
6667
echo "DOCKER_TEST_IMAGE=$(echo multibuild/xenial_${{ matrix.PLAT}})" >> $GITHUB_ENV;
6768
- name: Print some Environment variable
6869
run: |
@@ -76,8 +77,8 @@ jobs:
7677
- name: Build and Install Wheels
7778
run: |
7879
if [[ "$PLAT" == "arm64" ]]; then
79-
sudo xcode-select -switch /Applications/Xcode_12.2.app
80-
export SDKROOT=/Applications/Xcode_12.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk
80+
sudo xcode-select -switch /Applications/Xcode_12.5.1.app
81+
export SDKROOT=/Applications/Xcode_12.5.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk
8182
fi
8283
source travis-ci/build_steps.sh
8384
echo "------ BEFORE BUILD ---------"

.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="v0.3.18"
5+
- OPENBLAS_COMMIT="v0.3.19"
66
- REPO_DIR=OpenBLAS
77
# Following generated with:
88
# travis encrypt -r MacPython/openblas-libs OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN=<secret token value>

0 commit comments

Comments
 (0)