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 6A51A138A1A for ; Fri, 13 Feb 2015 12:08:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 059D0E091C; Fri, 13 Feb 2015 12:08:26 +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 A373AE091C for ; Fri, 13 Feb 2015 12:08:25 +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 74F323407F8 for ; Fri, 13 Feb 2015 12:08:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E3E011AA8 for ; Fri, 13 Feb 2015 12:08:23 +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: <1423829525.4ed84f3cd969bf8afa2032200982aef8d639b0ec.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: 4ed84f3cd969bf8afa2032200982aef8d639b0ec X-VCS-Branch: master Date: Fri, 13 Feb 2015 12:08:23 +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: e7a79b69-020f-4b93-81a3-fdc251b0b686 X-Archives-Hash: 723288b85e907abb29b2997f6660cf3d commit: 4ed84f3cd969bf8afa2032200982aef8d639b0ec Author: Justin Lecher gentoo org> AuthorDate: Fri Feb 13 12:12:05 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Feb 13 12:12:05 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4ed84f3c revert back to serial repoman as parallel doesn't work with multiple portages Signed-off-by: Justin Lecher gentoo.org> --- .travis.yml | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/.travis.yml b/.travis.yml index f846789..cf6287e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,25 +1,6 @@ -language: python -python: - - pypy 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 @@ -40,16 +21,7 @@ before_script: - sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-$PORTAGE/bin/repoman script: - - 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}" + - "./../portage-$PORTAGE/bin/repoman full -d -v" notifications: irc: "chat.freenode.net#gentoo-science" -