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

image: mtmiller/octave-snapshot

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