Travis: use a tmpfs for the actual build

This commit is contained in:
Adriaan de Groot 2017-07-11 04:17:11 -04:00
parent 8c61bc085b
commit d18e3dc385

View File

@ -19,6 +19,6 @@ install:
- pip install pycodestyle - pip install pycodestyle
script: script:
- 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" - 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"
- pycodestyle --exclude=thirdparty,.git $PWD - pycodestyle --exclude=thirdparty,.git $PWD