From: Philippe Mathieu-Daudé Date: Fri, 2 Jun 2017 18:56:23 +0000 (-0300) Subject: shippable: build using all available cpus X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a08fc2f8cc14325d6f417154556760781bb0b451;p=qemu.git shippable: build using all available cpus As of this commit: $ echo "container proc:" `getconf _NPROCESSORS_ONLN` `getconf _NPROCESSORS_CONF` container proc: 2 2 Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Alex Bennée Signed-off-by: Alex Bennée --- diff --git a/.shippable.yml b/.shippable.yml index 231c29b620..1e3ae35dd9 100644 --- a/.shippable.yml +++ b/.shippable.yml @@ -20,4 +20,4 @@ build: ci: - unset CC - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} - - make -j2 + - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))