aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeather <Heather@users.noreply.github.com>2015-08-26 16:09:43 +0400
committerHeather <Heather@users.noreply.github.com>2015-08-26 16:09:43 +0400
commitfc73a507304d932298d8624054c776af3cca5fe6 (patch)
tree8dd7a8866ef83c40568de1088cf3355dfc610a29 /.travis.yml
parentMerge pull request #152 from jauhien/master (diff)
downloadrust-fc73a507304d932298d8624054c776af3cca5fe6.tar.gz
rust-fc73a507304d932298d8624054c776af3cca5fe6.tar.bz2
rust-fc73a507304d932298d8624054c776af3cca5fe6.zip
Update .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index f07b3bb..1e100ee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,22 +12,22 @@ before_script:
- 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
+ - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz
+ - wget "https://github.com/gentoo-mirror/gentoo/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
- 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
+ - mkdir -p /etc/portage /usr/portage/distfiles
+ - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
- 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 "https://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
+ - 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
script:
- - ./../spinner.sh "./../portage-${PORTAGE_VER}/bin/repoman full -d"
+ - ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d"
# You can append own scripts after this line