[Pkg-debile-commits] [debile-slave] 01/01: Add parallel support for cppcheck

Léo Cavaillé leo.cavaille-guest at alioth.debian.org
Fri Sep 13 10:37:18 UTC 2013


This is an automated email from the git hooks/post-receive script.

leo.cavaille-guest pushed a commit to branch master
in repository debile-slave.

commit 429b65e8656f717aa87c5d4ee54e51c64b21e5ce
Author: Léo Cavaillé <leo at cavaille.net>
Date:   Fri Sep 13 12:36:41 2013 +0200

    Add parallel support for cppcheck
---
 debileslave/runners/cppcheck.py |    2 +-
 debileslave/runners/sbuild.py   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debileslave/runners/cppcheck.py b/debileslave/runners/cppcheck.py
index ac1cc03..c2a7646 100644
--- a/debileslave/runners/cppcheck.py
+++ b/debileslave/runners/cppcheck.py
@@ -27,7 +27,7 @@ def cppcheck(dsc, analysis):
     run_command(["dpkg-source", "-x", dsc, "source"])
     with cd('source'):
         out, err, ret = run_command([
-            'cppcheck', '--enable=all', '.', '--xml'
+            'cppcheck', '-j8', '--enable=all', '.', '--xml'
         ])
 
         xmlbytes = err.encode()
diff --git a/debileslave/runners/sbuild.py b/debileslave/runners/sbuild.py
index 052f68c..e3e28b2 100644
--- a/debileslave/runners/sbuild.py
+++ b/debileslave/runners/sbuild.py
@@ -92,7 +92,7 @@ def sbuild(package, suite, arch, compiler, analysis):
             "-c", chroot_name,
             "-v",
             "-d", suite,
-            "-j", "4",
+            "-j", "8",
             package,
         ])
     elif compiler == "clang-3.3":

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-debile/debile-slave.git



More information about the Pkg-debile-commits mailing list