Gitpod: Use nproc with make

To make use of multiple cores/threads as suggested by kendy

Change-Id: I07f12cf816133bb7e2b0c751fb6e623a535ff2e0
pull/276/head
Muhammet Kara 2020-10-12 10:10:05 +03:00
parent 6ce6e0fbb9
commit 7777f3df63
1 changed files with 1 additions and 1 deletions

View File

@ -32,5 +32,5 @@ github:
tasks:
- init: cd .. && wget https://github.com/CollaboraOnline/online/releases/download/for-code-assets/core-cp-6.4-assets.tar.gz
prebuild: tar xvf core-cp-6.4-assets.tar.gz && rm core-cp-6.4-assets.tar.gz && cd online && ./autogen.sh && ./configure --enable-silent-rules --with-lokit-path=/workspace/include --with-lo-path=/workspace/instdir --enable-debug --disable-setcap && cp .gitpod-files/loolwsd-gitpod.xml loolwsd.xml && make
prebuild: tar xvf core-cp-6.4-assets.tar.gz && rm core-cp-6.4-assets.tar.gz && cd online && ./autogen.sh && ./configure --enable-silent-rules --with-lokit-path=/workspace/include --with-lo-path=/workspace/instdir --enable-debug --disable-setcap && cp .gitpod-files/loolwsd-gitpod.xml loolwsd.xml && make -j `nproc`