From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8DDF259CA9 for ; Tue, 29 Mar 2016 18:37:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE87221C099; Tue, 29 Mar 2016 18:37:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7751721C099 for ; Tue, 29 Mar 2016 18:37:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F846340C1E for ; Tue, 29 Mar 2016 18:37:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA39B856 for ; Tue, 29 Mar 2016 18:36:58 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1459276592.63407d6473a7f47ee4ab3f9c8691bac9b47e343f.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: / X-VCS-Repository: proj/sci X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 63407d6473a7f47ee4ab3f9c8691bac9b47e343f X-VCS-Branch: master Date: Tue, 29 Mar 2016 18:36:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 84bfa49b-4343-4bf6-b9cf-02cafddbeb08 X-Archives-Hash: aeb83bb2bb260e7a9f02f97f04a73ae7 commit: 63407d6473a7f47ee4ab3f9c8691bac9b47e343f Author: Justin Lecher gentoo org> AuthorDate: Tue Mar 29 18:36:32 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Mar 29 18:36:32 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=63407d64 Don't check metadata.xml Signed-off-by: Justin Lecher gentoo.org> .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0cc8a96..b19309f 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"