comparison bitbucket-pipelines.yml @ 414:ee6afd27a78c

ci: install NumPy again to fix test failure for now * bitbucket-pipelines.yml: Install python-numpy and python3-numpy again.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 20:32:10 -0700
parents 4f415a887ff8
children aeed116cf9f9
comparison
equal deleted inserted replaced
413:4f415a887ff8 414:ee6afd27a78c
4 default: 4 default:
5 - step: 5 - step:
6 script: 6 script:
7 - apt-get update 7 - apt-get update
8 - apt-get install -y python-dev python3-dev 8 - apt-get install -y python-dev python3-dev
9 - apt-get install -y libboost-python-dev 9 - apt-get install -y libboost-python-dev python-numpy python3-numpy
10 - autoreconf -i 10 - autoreconf -i
11 - mkdir -p py2 py3 11 - mkdir -p py2 py3
12 - ( cd py2 && ../configure PYTHON_VERSION=2 ) 12 - ( cd py2 && ../configure PYTHON_VERSION=2 )
13 - make -C py2 all 13 - make -C py2 all
14 - make -C py2 check 14 - make -C py2 check