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 6FC1A138A1A for ; Wed, 18 Feb 2015 09:24:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB5FFE0951; Wed, 18 Feb 2015 09:24:30 +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 91927E0951 for ; Wed, 18 Feb 2015 09:24: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 565B334089F for ; Wed, 18 Feb 2015 09:24:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA82E1203A for ; Wed, 18 Feb 2015 09:24: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: <1424251450.d1db99c46e67c06e9caff63f7e4631df9aa810fe.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: d1db99c46e67c06e9caff63f7e4631df9aa810fe X-VCS-Branch: master Date: Wed, 18 Feb 2015 09:24: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: 5636c575-ae8f-4450-a610-463c98e175d0 X-Archives-Hash: 29646ac3b0d11d32d16321704ea96282 commit: d1db99c46e67c06e9caff63f7e4631df9aa810fe Author: Justin Lecher gentoo org> AuthorDate: Wed Feb 18 09:24:10 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Feb 18 09:24:10 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d1db99c4 Create all directories in the beginning Signed-off-by: Justin Lecher gentoo.org> --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f672eea..41f011c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ env: - JOB=15 before_script: - - mkdir travis-overlay + - mkdir -p travis-overlay /etc/portage/ /usr/portage/distfiles - mv !(travis-overlay) travis-overlay/ - mv .git travis-overlay/ - wget -O - "https://github.com/gentoo/portage/archive/master.tar.gz" | tar -xz @@ -28,7 +28,6 @@ before_script: - 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 - cp portage-master/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 @@ -38,7 +37,7 @@ script: for x in $(cat profiles/categories); do if test $(( cx++ % 16 )) -eq ${JOB}; then cd ${x} && { - python ../portage-*/bin/repoman full -v || ret=1; + python ../portage-*/bin/repoman full -vdx || ret=1; } && cd -; fi; done;