-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
42 lines (41 loc) · 1.9 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Run repoman on travis
# https://github.com/urras/repoman-travis
#
language: python
python:
- pypy
env:
- PORTAGE_VER="2.2.20.1"
before_script:
- date
- mkdir travis-overlay
- mv !(travis-overlay) travis-overlay/
- mv .git travis-overlay/
- curl "https://raw.githubusercontent.com/urras/repoman-travis/master/.travis.yml" -o .travis.yml.upstream
- curl -LO "http://distfiles.gentoo.org/distfiles/portage-${PORTAGE_VER}.tar.bz2"
- curl -LO "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"
- curl -LO "https://raw.githubusercontent.com/urras/repoman-travis/master/spinner.sh"
- 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
- 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 "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
- cd travis-overlay
script:
- ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d"
# You can append own scripts after this line
notifications:
irc:
channels:
- "chat.freenode.net#tox-dev"
on_success: always
on_failure: always