https://github.com/maxscheurer/cppe
Raw File
Tip revision: d467ba106d8228fc9374662dd83c6e5ede6f4756 authored by Maximilian Scheurer on 15 August 2019, 14:13:21 UTC
Bump version: 0.0.9 → 0.1.1
Tip revision: d467ba1
.travis.yml
dist: xenial
sudo: required
language: python
python:
  - "3.7"


addons:
 apt:
   sources:
     - ubuntu-toolchain-r-test
   packages:
     - g++-8
     - libhdf5-dev
     - hdf5-tools

env:
 - CXX=g++-8 && PYTHONPATH=$PYTHONPATH:$(pwd)/build/stage/lib/

before_script:
  - pip install pytest numpy
  - pip install h5py
  - pip install numba
  - mkdir build
  - cd build
  - cmake -DBUILD_SHARED_LIBS=on -DCMAKE_CXX_COMPILER=$CXX -DENABLE_PYTHON_INTERFACE=ON ..

script:
  - cmake --version
  - make
  - cd ..
  - pytest
back to top