calamares/.travis.yml

25 lines
437 B
YAML
Raw Normal View History

2017-03-17 05:31:19 -07:00
language:
- cpp
- python
python:
- 3.5
sudo: required
services:
- docker
2017-03-15 10:36:06 -07:00
notifications:
irc:
- "chat.freenode.net#calamares"
2017-03-15 10:33:08 -07:00
install:
- docker build -t calamares .
- pip install pycodestyle
2017-03-15 09:10:11 -07:00
script:
2017-07-10 16:16:51 -07:00
- docker run -v $PWD:/build calamares bash -lc "mkdir /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON ../build && make -j2"
- pycodestyle --exclude=thirdparty,.git $PWD