From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E58DF13835A for ; Fri, 12 Mar 2021 18:45:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C543E0A8F; Fri, 12 Mar 2021 18:45:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E989AE0A8F for ; Fri, 12 Mar 2021 18:45:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A34C340D00 for ; Fri, 12 Mar 2021 18:45:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCB0B579 for ; Fri, 12 Mar 2021 18:45:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615574644.0b288b6b436ca6b57dedf2add0c8fe438b248c2b.sam@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: / X-VCS-Repository: proj/musl X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0b288b6b436ca6b57dedf2add0c8fe438b248c2b X-VCS-Branch: master Date: Fri, 12 Mar 2021 18:45:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2062d5e3-44a3-44be-8f80-4a76f398eed9 X-Archives-Hash: 059c751771ca76284ed11254f85b642e commit: 0b288b6b436ca6b57dedf2add0c8fe438b248c2b Author: Sam James gentoo org> AuthorDate: Fri Mar 12 18:44:04 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 12 18:44:04 2021 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=0b288b6b *: Remove Travis (obsoleted by Actions) Signed-off-by: Sam James gentoo.org> .travis.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a4af6c6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -language: python -python: - - "3.7" -notifications: - irc: - channels: - - "irc.freenode.org#gentoo-hardened" - on_success: change # options: [always|never|change] default: always - on_failure: always # options: [always|never|change] default: always - on_start: false # default: false -env: - - PORTAGE_VER="3.0.8" -before_install: - - sudo apt-get -qq update - - pip install lxml pyyaml -before_script: - - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache - - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo - - mv !(travis-overlay) travis-overlay/ - - mv .git travis-overlay/ - - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" - - wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz - - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1 - - 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 - - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd - - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf - - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0/musl /etc/portage/make.profile - - cd travis-overlay -script: - - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -i -d"