From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 73546138A1A for ; Fri, 13 Feb 2015 12:04:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFCA4E0924; Fri, 13 Feb 2015 12:04:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA2DEE0920 for ; Fri, 13 Feb 2015 12:04:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7ADE33407A4 for ; Fri, 13 Feb 2015 12:04:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6151611AA9 for ; Fri, 13 Feb 2015 12:04:14 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1423829268.084e15cb712950a6c580149f93c1d09c57952374.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: / X-VCS-Repository: proj/sci X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 084e15cb712950a6c580149f93c1d09c57952374 X-VCS-Branch: master Date: Fri, 13 Feb 2015 12:04:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 24cacc79-c110-47d3-9f9e-87037fd18fe5 X-Archives-Hash: 248b9c643394a8d6228b29381453fb1a commit: 084e15cb712950a6c580149f93c1d09c57952374 Author: Justin Lecher gentoo org> AuthorDate: Fri Feb 13 12:07:48 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Feb 13 12:07:48 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=084e15cb Import parallel repoman checks from gentoo-rsync2git repo Signed-off-by: Justin Lecher gentoo.org> --- .travis.yml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9c4bdf2..f846789 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,22 @@ python: env: - PORTAGE=2.2.14 - PORTAGE=2.2.17 + - JOB=0 + - JOB=1 + - JOB=2 + - JOB=3 + - JOB=4 + - JOB=5 + - JOB=6 + - JOB=7 + - JOB=8 + - JOB=9 + - JOB=10 + - JOB=11 + - JOB=12 + - JOB=13 + - JOB=14 + - JOB=15 before_script: - mkdir travis-overlay @@ -24,7 +40,16 @@ before_script: - sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-$PORTAGE/bin/repoman script: - - "python ./../portage-$PORTAGE/bin/repoman full -d -v -x" + - ret=0; cx=0; + for x in $(cat /usr/portage/profiles/categories); do + if test $(( cx++ % 16 )) -eq ${JOB}; then + cd ${x} && { + python ./../portage-${PORTAGE}/bin/repoman full -v -d -x || ret=1; + } && cd -; + fi; + done; + exit "${ret}" notifications: irc: "chat.freenode.net#gentoo-science" +