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 9A92413835C for ; Mon, 17 Aug 2020 22:14:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81547E0880; Mon, 17 Aug 2020 22:14:54 +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 44183E0880 for ; Mon, 17 Aug 2020 22:14:54 +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 CB9A834F4C1 for ; Mon, 17 Aug 2020 22:14:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3713F22B for ; Mon, 17 Aug 2020 22:14:51 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1597702433.a4866ae21533c0d578667de5f9ab7b8588202ff5.mattst88@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-arm64.conf X-VCS-Directories: tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a4866ae21533c0d578667de5f9ab7b8588202ff5 X-VCS-Branch: master Date: Mon, 17 Aug 2020 22:14:51 +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: 9d77e329-990a-409d-836b-31b1743f8b8c X-Archives-Hash: 80ba329ce37794c9b6ab0bbec33d5115 commit: a4866ae21533c0d578667de5f9ab7b8588202ff5 Author: Matt Turner gentoo org> AuthorDate: Mon Aug 17 17:50:16 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Aug 17 22:13:53 2020 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=a4866ae2 arm64: Upload xz stages to arm64@ Signed-off-by: Matt Turner gentoo.org> tools/catalyst-auto-arm64.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/catalyst-auto-arm64.conf b/tools/catalyst-auto-arm64.conf index 774dc265..a63eadea 100644 --- a/tools/catalyst-auto-arm64.conf +++ b/tools/catalyst-auto-arm64.conf @@ -20,7 +20,7 @@ update_symlinks() { local d f for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do pushd "${d}" >/dev/null - for f in $(ls stage3-${SUBARCH}-*bz2 | grep -v latest | give_latest_from_dates) ; do + for f in $(ls stage3-${SUBARCH}-*xz | grep -v latest | give_latest_from_dates) ; do local of=$(echo "${f}" | convert_filename) ln -sf "${f}" "${of}" done @@ -29,7 +29,7 @@ update_symlinks() { } upload() { - rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" arm@releng-incoming.gentoo.org: + rsync -e 'ssh -i /root/.ssh/id_ed25519 -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" arm64@releng-incoming.gentoo.org: } post_build() { @@ -39,7 +39,7 @@ post_build() { case ${spec} in stage3.spec) - upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.bz2* + upload stage3-${SUBARCH}-*${TIMESTAMP}*.tar.xz* ;; esac