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 E22EE138A1A for ; Wed, 18 Feb 2015 09:06:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7597AE0943; Wed, 18 Feb 2015 09:06:31 +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 D76B9E080A for ; Wed, 18 Feb 2015 09:06:30 +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 915DD3408BF for ; Wed, 18 Feb 2015 09:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DA481202C for ; Wed, 18 Feb 2015 09:06:27 +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: <1424250380.433650a8dc4b0aba643ae8d890a5c518a4ae59da.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: 433650a8dc4b0aba643ae8d890a5c518a4ae59da X-VCS-Branch: master Date: Wed, 18 Feb 2015 09:06:27 +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: 41a23392-5b23-434b-91bf-e58214638b0d X-Archives-Hash: 3c7b1d5a0d56fcf056dd6d1044bdcd9c commit: 433650a8dc4b0aba643ae8d890a5c518a4ae59da Author: Justin Lecher gentoo org> AuthorDate: Wed Feb 18 09:06:20 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Feb 18 09:06:20 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=433650a8 Use rsync2git version Signed-off-by: Justin Lecher gentoo.org> --- .travis.yml | 59 +++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6d0d5bd..0fd1f46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,36 +1,43 @@ -# -# Run repoman via travis -# See https://github.com/mrueg/repoman-travis -# language: python python: - - pypy + - pypy env: - - PORTAGE_VER="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 - - mv !(travis-overlay) travis-overlay/ - - mv .git travis-overlay/ - - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/.travis.yml" -O .travis.yml.upstream - - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz - - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" - - wget "https://github.com/gentoo/gentoo-portage-rsync-mirror/archive/master.tar.gz" -O portage-tree.tar.gz - - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr spinner.sh - - chmod a+rwx spinner.sh + - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd - echo "portage::250:portage,travis" >> /etc/group - - mkdir -p /etc/portage/ /usr/portage/distfiles - - tar xzf portage-${PORTAGE_VER}.tar.gz - - tar xzf portage-tree.tar.gz -C /usr/portage --strip-components=1 - - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/ - - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile - - wget "http://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd - - SIZE=`stat -c %s .travis.yml.upstream` - - if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e "\e[31m !!! .travis.yml outdated! Update available https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi - - cd travis-overlay + - ln -s "${PWD}" /usr/portage + - mkdir -p /etc/portage distfiles + - ln -s "${PWD}"/profiles/base/ /etc/portage/make.profile + - wget -O - "https://github.com/gentoo/portage/archive/master.tar.gz" | tar -xz + script: - - ./../spinner.sh "./../portage-${PORTAGE_VER}/bin/repoman full -d" -# You can append own scripts after this line + - ret=0; cx=0; + for x in $(cat profiles/categories); do + if test $(( cx++ % 16 )) -eq ${JOB}; then + cd ${x} && { + python ../portage-*/bin/repoman full -v || ret=1; + } && cd -; + fi; + done; + exit "${ret}" notifications: irc: "chat.freenode.net#gentoo-science"