From d18e3dc3853864f42341633e59e86b1c19767664 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 11 Jul 2017 04:17:11 -0400 Subject: [PATCH] Travis: use a tmpfs for the actual build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c45e6235c..72372ce22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,6 @@ install: - pip install pycodestyle 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