comparison bitbucket-pipelines.yml @ 416:aeed116cf9f9

build: drop build-time dependency on Boost * Makefile.am (OCT_LIBS): Remove -l$(BOOST_PYTHON_LIB). * bitbucket-pipelines.yml: Don't install libboost-python-dev. * configure.ac: Remove call to AX_BOOST_PYTHON. * m4/ax_boost_base.m4, m4/ax_boost_python.m4: Delete.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 21:50:37 -0700
parents ee6afd27a78c
children
comparison
equal deleted inserted replaced
415:9bf8ba050122 416:aeed116cf9f9
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 python-dev python3-dev
9 - apt-get install -y libboost-python-dev python-numpy python3-numpy 9 - apt-get install -y python-numpy python3-numpy
10 - autoreconf -i 10 - autoreconf -i
11 - mkdir -p py2 py3 11 - mkdir -p py2 py3
12 - ( cd py2 && ../configure PYTHON_VERSION=2 ) 12 - ( cd py2 && ../configure PYTHON_VERSION=2 )
13 - make -C py2 all 13 - make -C py2 all
14 - make -C py2 check 14 - make -C py2 check