diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-06-02 15:56:23 -0300 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2017-06-21 15:03:05 +0100 |
commit | a08fc2f8cc14325d6f417154556760781bb0b451 (patch) | |
tree | 77f5634f45a712263e8ebaf413be89cd1a280489 /.shippable.yml | |
parent | c34647c18a1f2ea947a4fdcdacb26012c5684459 (diff) |
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é <f4bug@amsat.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to '.shippable.yml')
-rw-r--r-- | .shippable.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |