view bitbucket-pipelines.yml @ 428:3af3665348a1

Also update doctests in compiled functions * pycall.cc, pyeval.cc, pyexec.cc: Update doctests. * @pyobject/dummy.m, @pyobject/cell.m: Use FIXME and https in comments.
author Mike Miller <mtmiller@octave.org>
date Thu, 22 Feb 2018 15:55:15 -0800
parents aeed116cf9f9
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