annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
393
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
1 image: mtmiller/octave-snapshot
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
2
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
3 pipelines:
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
4 default:
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
5 - step:
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
6 script:
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
7 - apt-get update && apt-get install -y libboost-python-dev python-numpy
0a5b6097f4e4 Configure bitbucket CI
Mike Miller <mtmiller@octave.org>
parents:
diff changeset
8 - autoreconf -i
394
b3e63c620448 ci: use a separate build directory
Mike Miller <mtmiller@octave.org>
parents: 393
diff changeset
9 - mkdir -p py2
b3e63c620448 ci: use a separate build directory
Mike Miller <mtmiller@octave.org>
parents: 393
diff changeset
10 - ( cd py2 && ../configure PYTHON_VERSION=2 )
b3e63c620448 ci: use a separate build directory
Mike Miller <mtmiller@octave.org>
parents: 393
diff changeset
11 - make -C py2 all
b3e63c620448 ci: use a separate build directory
Mike Miller <mtmiller@octave.org>
parents: 393
diff changeset
12 - make -C py2 check