aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan S. Titov <iohann.s.titov@gmail.com>2016-02-03 06:10:06 +0100
committerIvan S. Titov <iohann.s.titov@gmail.com>2016-02-03 06:10:06 +0100
commit042aeac51bdc59893e0fcf57d94e87384bbb6ad7 (patch)
tree2211c7ab3b03bf4d9523fc9999d787be8a64cce7
parent8684ea9370960cd0962a947a5ca22cd5b2e616a7 (diff)
downloadprofanity-042aeac51bdc59893e0fcf57d94e87384bbb6ad7.tar.gz
profanity-042aeac51bdc59893e0fcf57d94e87384bbb6ad7.tar.xz
add .travis.yml as for bug 70
-rw-r--r--.travis.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..50ad58a
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,33 @@
+#
+# Run repoman via travis
+# See https://github.com/mrueg/repoman-travis
+#
+language: python
+python:
+ - pypy
+env:
+ - PORTAGE_VER="2.2.27"
+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://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
+ - 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
+ - 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
+ - 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 "python ../portage-${PORTAGE_VER}/bin/repoman full -d"
+# You can append own scripts after this line