comparison bitbucket-pipelines.yml @ 396:a1fb6575f6dd

ci: add missing Python development dependencies * bitbucket-pipelines.yml: Install Python 2 and 3 development libraries.
author Mike Miller <mtmiller@octave.org>
date Fri, 07 Apr 2017 11:15:05 -0700
parents aa76e98a1a3e
children 4f415a887ff8
comparison
equal deleted inserted replaced
395:aa76e98a1a3e 396:a1fb6575f6dd
3 pipelines: 3 pipelines:
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 libboost-python-dev python-numpy python3-numpy 9 - apt-get install -y libboost-python-dev python-numpy python3-numpy
9 - autoreconf -i 10 - autoreconf -i
10 - mkdir -p py2 py3 11 - mkdir -p py2 py3
11 - ( cd py2 && ../configure PYTHON_VERSION=2 ) 12 - ( cd py2 && ../configure PYTHON_VERSION=2 )
12 - make -C py2 all 13 - make -C py2 all