Skip to content

remove unused appveyor, update to OpenBLAS v0.3.20 #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
branches: [ master ]

env:
OPENBLAS_COMMIT: "5188aed"
OPENBLAS_COMMIT: "v0.3.20"
OPENBLAS_ROOT: "c:\\opt"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
INTERFACE64: '1'
env:
REPO_DIR: OpenBLAS
OPENBLAS_COMMIT: "5188aed"
OPENBLAS_COMMIT: "v0.3.20"
MACOSX_DEPLOYMENT_TARGET: 10.9
MB_PYTHON_VERSION: ${{ matrix.python-version }}
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ env:
global:
# The archive that gets built has name from ``git describe`` on this
# commit.
- OPENBLAS_COMMIT="5188aed"
- OPENBLAS_COMMIT="v0.3.20"
- REPO_DIR=OpenBLAS
# Following generated with:
# travis encrypt -r MacPython/openblas-libs OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN=<secret token value>
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Building OpenBLAS

This is a repository to trigger builds of OpenBLAS on Travis-CI and Appveyor.
This is a repository to trigger builds of OpenBLAS on Travis-CI (for aarch64,
ppc64, s390x) and github actions for all the others.

The OpenBLAS libraries get uploaded to
https://anaconda.org/multibuild-wheels-staging/openblas-libs/files
Expand Down
72 changes: 0 additions & 72 deletions _appveyor.yml

This file was deleted.

9 changes: 0 additions & 9 deletions tools/prepare_local.bat

This file was deleted.

3 changes: 2 additions & 1 deletion travis-ci/build_steps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ function do_build_lib {
mkdir -p libs
start_spinner
set -x
git config --global --add safe.directory '*'
(cd OpenBLAS \
&& patch_source \
&& make BUFFERSIZE=20 DYNAMIC_ARCH=1 USE_OPENMP=0 NUM_THREADS=64 BINARY=$bitness $interface64_flags $target_flags > /dev/null \
Expand All @@ -183,7 +184,7 @@ function do_build_lib {
$BUILD_PREFIX/include/*blas* \
$BUILD_PREFIX/include/*lapack* \
$BUILD_PREFIX/lib/libopenblas* \
$BUILD_PREFIX/lib/pkgconfig* \
$BUILD_PREFIX/lib/pkgconfig/openblas* \
$BUILD_PREFIX/lib/cmake/openblas
}

Expand Down