1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- language: generic
- os: osx
- # language: python
- # python:
- # - "2.7.15"
- # - "3.6.6"
- # - "3.7-dev"
- # dist: trusty
- # addons:
- # apt:
- # packages:
- # - opencl-headers
- # - ocl-icd-opencl-dev
- # - fglrx
- # git:
- # depth: false
- # install:
- # # There is sometimes issues with the install order so do this bad boi first
- # - pip3 install pybind11
- # - pip3 install -r requirements.txt
- # - pip3 install -e .
- # script:
- # - python3 setup.py test
- install:
- - pip3 install Sphinx sphinx_rtd_theme
- # - pip install Sphinx sphinx_rtd_theme
- after_success:
- - make html
- deploy:
- provider: pages
- skip-cleanup: true
- github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
- keep-history: true
- local-dir: ./build
- on:
- branch: master
|