summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-07-22 21:44:25 -0500
committerGitHub <noreply@github.com>2019-07-22 21:44:25 -0500
commit67940ffec87b75ff72250ae9b2890fac6a134681 (patch)
tree5fa400c3d658aeeead892b9a9fc25ae462aa1aa0
parent1f584139324a4b818ec39dec2a2d9f3e30b57297 (diff)
parent7eb5e0d82323c5fffadb62a54107cbc25c272303 (diff)
downloadnumpy-67940ffec87b75ff72250ae9b2890fac6a134681.tar.gz
Merge pull request #14068 from tylerjereddy/bump_armv8_openblas
MAINT: bump ARMv8 / POWER8 OpenBLAS in CI
-rw-r--r--.travis.yml2
-rw-r--r--shippable.yml2
-rw-r--r--tools/openblas_support.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index b54e871cd..cb98356c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ cache:
env:
global:
- - OpenBLAS_version=0.3.5
+ - OpenBLAS_version=0.3.7.dev
- WHEELHOUSE_UPLOADER_USERNAME=travis.numpy
# The following is generated with the command:
# travis encrypt -r numpy/numpy WHEELHOUSE_UPLOADER_SECRET=tH3AP1KeY
diff --git a/shippable.yml b/shippable.yml
index cf09b791d..88e131f48 100644
--- a/shippable.yml
+++ b/shippable.yml
@@ -48,7 +48,7 @@ build:
- extra_path=$(printf "%s:" "${extra_directories[@]}")
- export PATH="${extra_path}${PATH}"
# check OpenBLAS version
- - python tools/openblas_support.py --check_version 0.3.5
+ - python tools/openblas_support.py --check_version 0.3.7.dev
# run the test suite
- python runtests.py -- -rsx --junit-xml=$SHIPPABLE_REPO_DIR/shippable/testresults/tests.xml -n 2 --durations=10
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index 297dc6436..ac4abb3f0 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -14,7 +14,7 @@ from tempfile import mkstemp, gettempdir
import zipfile
import tarfile
-OPENBLAS_V = 'v0.3.5'
+OPENBLAS_V = '6a8b426'
OPENBLAS_LONG = 'v0.3.5-274-g6a8b4269'
BASE_LOC = ''
RACKSPACE = 'https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com'
@@ -47,7 +47,7 @@ def download_openblas(target, arch):
# https://github.com/tylerjereddy/openblas-static-gcc/tree/master/ARMv8
# build done on GCC compile farm machine named gcc115
# tarball uploaded manually to an unshared Dropbox location
- filename = ('https://www.dropbox.com/s/pbqkxzlmih4cky1/'
+ filename = ('https://www.dropbox.com/s/zsp1wb3tq4n9g0b/'
'openblas-{}-armv8.tar.gz?dl=1'.format(OPENBLAS_V))
typ = 'tar.gz'
elif arch == 'ppc64':
@@ -55,7 +55,7 @@ def download_openblas(target, arch):
# https://github.com/tylerjereddy/openblas-static-gcc/blob/master/power8
# built on GCC compile farm machine named gcc112
# manually uploaded tarball to an unshared Dropbox location
- filename = ('https://www.dropbox.com/s/zcwhk7c2zptwy0s/'
+ filename = ('https://www.dropbox.com/s/k9uabwoi8bekjwe/'
'openblas-{}-ppc64le-power8.tar.gz?dl=1'.format(OPENBLAS_V))
typ = 'tar.gz'
elif arch == 'darwin':