diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-03-29 19:36:32 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-03-29 19:36:32 +0100 |
commit | 63407d6473a7f47ee4ab3f9c8691bac9b47e343f (patch) | |
tree | 3f2d76d397839109bdf51a3bf1eb9977b941166d | |
parent | Merge branch 'heroxbd-master' (diff) | |
download | sci-63407d6473a7f47ee4ab3f9c8691bac9b47e343f.tar.gz sci-63407d6473a7f47ee4ab3f9c8691bac9b47e343f.tar.bz2 sci-63407d6473a7f47ee4ab3f9c8691bac9b47e343f.zip |
Don't check metadata.xml
Signed-off-by: Justin Lecher <jlec@gentoo.org>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 0cc8a9622..b19309fa9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,12 +31,12 @@ before_script: - 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 + - wget "https://raw.githubusercontent.com/mgorny/gentoo-xml-schema/master/metadata.xsd" -O metadata.xsd script: - ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d" # You can append own scripts after this line - - - wget "https://raw.githubusercontent.com/mgorny/gentoo-xml-schema/master/metadata.xsd" -O metadata.xsd - - xmllint --noout --schema metadata.xsd */*/metadata.xml 2>&1 | grep "fails to validate"; [[ ${PIPESTATUS[0]} == 0 ]] || false + #too old xmllint on travis + #- xmllint --noout --schema metadata.xsd */*/metadata.xml 2>&1 | grep "fails to validate"; [[ ${PIPESTATUS[0]} == 0 ]] || false notifications: irc: "chat.freenode.net#gentoo-science" |