comparison bitbucket-pipelines.yml @ 394:b3e63c620448

ci: use a separate build directory * bitbucket-pipelines.yml: Move Python 2 configure/build/test to a separate directory.
author Mike Miller <mtmiller@octave.org>
date Fri, 07 Apr 2017 10:37:56 -0700
parents 0a5b6097f4e4
children aa76e98a1a3e
comparison
equal deleted inserted replaced
393:0a5b6097f4e4 394:b3e63c620448
4 default: 4 default:
5 - step: 5 - step:
6 script: 6 script:
7 - apt-get update && apt-get install -y libboost-python-dev python-numpy 7 - apt-get update && apt-get install -y libboost-python-dev python-numpy
8 - autoreconf -i 8 - autoreconf -i
9 - ./configure PYTHON_VERSION=2 9 - mkdir -p py2
10 - make 10 - ( cd py2 && ../configure PYTHON_VERSION=2 )
11 - make check 11 - make -C py2 all
12 - make -C py2 check