# HG changeset patch # User Mike Miller # Date 1491586676 25200 # Node ID b3e63c620448fb0b74ae5d43fec5aaaa6028e253 # Parent 0a5b6097f4e4cedf1c55195ad285516212860177 ci: use a separate build directory * bitbucket-pipelines.yml: Move Python 2 configure/build/test to a separate directory. diff -r 0a5b6097f4e4 -r b3e63c620448 bitbucket-pipelines.yml --- a/bitbucket-pipelines.yml Thu Apr 06 14:13:54 2017 -0700 +++ b/bitbucket-pipelines.yml Fri Apr 07 10:37:56 2017 -0700 @@ -6,6 +6,7 @@ script: - apt-get update && apt-get install -y libboost-python-dev python-numpy - autoreconf -i - - ./configure PYTHON_VERSION=2 - - make - - make check + - mkdir -p py2 + - ( cd py2 && ../configure PYTHON_VERSION=2 ) + - make -C py2 all + - make -C py2 check