.travis.yml 372 B

123456789101112131415161718192021222324
  1. language:
  2. - cpp
  3. - python
  4. python:
  5. - 3.5
  6. sudo: required
  7. services:
  8. - docker
  9. notifications:
  10. irc:
  11. - "chat.freenode.net#calamares"
  12. install:
  13. - docker build -t calamares .
  14. - pip install pep8
  15. script:
  16. - docker run -v $PWD:/build calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2"
  17. - pep8 $PWD