.travis.yml 369 B

12345678910111213141516171819202122232425
  1. language: python
  2. python:
  3. - "2.7.15"
  4. - "3.6.6"
  5. - "3.7-dev"
  6. dist: trusty
  7. addons:
  8. apt:
  9. packages:
  10. - opencl-headers
  11. - ocl-icd-opencl-dev
  12. - fglrx
  13. git:
  14. depth: false
  15. install:
  16. # There is sometimes issues with the install order so do this bad boi first
  17. - pip install mako pybind11
  18. - pip install -e .
  19. script:
  20. - "python setup.py test"