aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-02-13 13:12:05 +0100
committerJustin Lecher <jlec@gentoo.org>2015-02-13 13:12:05 +0100
commit4ed84f3cd969bf8afa2032200982aef8d639b0ec (patch)
tree249d6cd7d3512905aa3912cce2548f2b9da1d83e /.travis.yml
parentImport parallel repoman checks from gentoo-rsync2git repo (diff)
downloadsci-4ed84f3cd969bf8afa2032200982aef8d639b0ec.tar.gz
sci-4ed84f3cd969bf8afa2032200982aef8d639b0ec.tar.bz2
sci-4ed84f3cd969bf8afa2032200982aef8d639b0ec.zip
revert back to serial repoman as parallel doesn't work with multiple portages
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml30
1 files changed, 1 insertions, 29 deletions
diff --git a/.travis.yml b/.travis.yml
index f8467890f..cf6287ee5 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"
-