2017-03-17 13:31:19 +01:00
|
|
|
language:
|
|
|
|
- cpp
|
|
|
|
- python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- 3.5
|
|
|
|
|
2017-03-15 17:58:15 +01:00
|
|
|
sudo: required
|
|
|
|
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
2017-03-15 18:36:06 +01:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
- "chat.freenode.net#calamares"
|
|
|
|
|
2017-03-15 18:33:08 +01:00
|
|
|
install:
|
2017-03-15 17:58:15 +01:00
|
|
|
- docker build -t calamares .
|
2017-03-30 00:33:06 +02:00
|
|
|
- pip install pycodestyle
|
2017-03-15 17:10:11 +01:00
|
|
|
|
|
|
|
script:
|
2017-08-08 17:00:32 +02:00
|
|
|
- docker run -v $PWD:/src --tmpfs /build:rw,size=65536k calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON /src && make -j2 && make install DESTDIR=/build/INSTALL_ROOT"
|
2017-06-04 20:48:04 +02:00
|
|
|
- pycodestyle --exclude=thirdparty,.git $PWD
|
2017-06-23 10:43:24 +02:00
|
|
|
|