.travis.yml 789 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. language: generic
  2. os: osx
  3. # language: python
  4. # python:
  5. # - "2.7.15"
  6. # - "3.6.6"
  7. # - "3.7-dev"
  8. # dist: trusty
  9. # addons:
  10. # apt:
  11. # packages:
  12. # - opencl-headers
  13. # - ocl-icd-opencl-dev
  14. # - fglrx
  15. # git:
  16. # depth: false
  17. # install:
  18. # # There is sometimes issues with the install order so do this bad boi first
  19. # - pip3 install pybind11
  20. # - pip3 install -r requirements.txt
  21. # - pip3 install -e .
  22. # script:
  23. # - python3 setup.py test
  24. install:
  25. - pip3 install Sphinx sphinx_rtd_theme
  26. # - pip install Sphinx sphinx_rtd_theme
  27. after_success:
  28. - make html
  29. deploy:
  30. provider: pages
  31. skip-cleanup: true
  32. github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
  33. keep-history: true
  34. local-dir: ./build
  35. on:
  36. branch: master