view 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
line wrap: on
line source

image: mtmiller/octave-snapshot

pipelines:
  default:
    - step:
        script:
          - apt-get update && apt-get install -y libboost-python-dev python-numpy
          - autoreconf -i
          - mkdir -p py2
          - ( cd py2 && ../configure PYTHON_VERSION=2 )
          - make -C py2 all
          - make -C py2 check