diff options
| author | Matti Picus <matti.picus@gmail.com> | 2019-04-08 16:22:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-08 16:22:23 +0300 |
| commit | ca8a22cdaf23ae698db26d1748b3a330dae7b7da (patch) | |
| tree | cf83c7bc8267c8e842358ac9bb0d30e4c236204f | |
| parent | 67b36598419f243b1001aa6ce2f4c5c8ef998b69 (diff) | |
| parent | 97e3c508e05bd365e26fcc18930fc85881b37718 (diff) | |
| download | numpy-ca8a22cdaf23ae698db26d1748b3a330dae7b7da.tar.gz | |
Merge pull request #13270 from tylerjereddy/armv8-openblas
TST: use OpenBLAS v0.3.5 for ARMv8 CI
| -rw-r--r-- | shippable.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/shippable.yml b/shippable.yml index 82ee9461f..75d2dcafe 100644 --- a/shippable.yml +++ b/shippable.yml @@ -22,7 +22,15 @@ runtime: build: ci: # install dependencies - - sudo apt-get install gcc gfortran libblas-dev liblapack-dev + - sudo apt-get install gcc gfortran + # ARMv8 OpenBLAS built using script available here: + # 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 + - wget -O openblas-v0.3.5-armv8.tar.gz https://www.dropbox.com/s/pbqkxzlmih4cky1/openblas-v0.3.5-armv8.tar.gz?dl=0 + - tar zxvf openblas-v0.3.5-armv8.tar.gz + - sudo cp -r ./64/lib/* /usr/lib + - sudo cp ./64/include/* /usr/include # add pathlib for Python 2, otherwise many tests are skipped - pip install --upgrade pip # we will pay the ~13 minute cost of compiling Cython only when a new |
