diff options
author | Pauli Virtanen <pav@iki.fi> | 2019-12-20 13:33:46 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2019-12-21 23:14:15 +0200 |
commit | 49974bad2d11e3be31cb83f881ae09dd91b8dd25 (patch) | |
tree | 1ec1d034d3ae7b8001b77afabb94a578c135657a /shippable.yml | |
parent | 2dbe8de7090b4a39a1f19b2c81c2d3b085b7b244 (diff) | |
download | numpy-49974bad2d11e3be31cb83f881ae09dd91b8dd25.tar.gz |
MAINT: make openblas_support.py strip path prefix from archive contents
Adapt CI scripts to this.
Diffstat (limited to 'shippable.yml')
-rw-r--r-- | shippable.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shippable.yml b/shippable.yml index f64cb9937..4313a6de2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -25,8 +25,9 @@ build: - sudo apt-get update - sudo apt-get install gcc gfortran - target=$(python tools/openblas_support.py) - - sudo cp -r "${target}"/64/lib/* /usr/lib - - sudo cp "${target}"/64/include/* /usr/include + - ls -lR "${target}" + - sudo cp -r "${target}"/lib/* /usr/lib + - sudo cp "${target}"/include/* /usr/include - python -m pip install --upgrade pip # we will pay the ~13 minute cost of compiling Cython only when a new |