From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 103A41F55B for ; Fri, 15 May 2020 15:12:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727811AbgEOPJn (ORCPT ); Fri, 15 May 2020 11:09:43 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:53445 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726216AbgEOPJm (ORCPT ); Fri, 15 May 2020 11:09:42 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 3DF78CC61F; Fri, 15 May 2020 11:09:41 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type:content-transfer-encoding; s=sasl; bh=26gvHWlRNELc a39rRV6GkGqsS/I=; b=IrNNhqKvTZgDvfWhcyGiv1iydqdRhl9Y6Kg5FI4mNnoZ wRLopgyKut6xu+BbXDZIhiwBjlABE3+y09rrH3zqlgIqMc/e9j2EJHFv0LoJ4yfR JK16cKffgDaRgGypEQzmLIYeUbzbtFR0Al5ATXXpttVi7gcTNG0Rr11O2velwaw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type:content-transfer-encoding; q=dns; s=sasl; b=uIelhj WJv+GPWMhk5ExxUY5IqBW7oLNFQFY5E+5onTGIzKHQlJYcA6TgjM66te9OOeD9+J BBE/lBq0u9xgGrqbJCnQdSOvbHtinfA+1aqvv7qG9g3Td/mtVrwDZgB1Xq9oNm2q knf4/SAfsTEHdJyXI7+O6Hms+sV0mKwA0Lweg= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 362C2CC61E; Fri, 15 May 2020 11:09:41 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [35.231.104.69]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 794AFCC61D; Fri, 15 May 2020 11:09:38 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Johannes Schindelin via GitGitGadget" Cc: git@vger.kernel.org, Johannes Schindelin Subject: Re: [PATCH v2] ci: avoid pounding on the poor ci-artifacts container References: Date: Fri, 15 May 2020 08:09:36 -0700 In-Reply-To: (Johannes Schindelin via GitGitGadget's message of "Fri, 15 May 2020 07:55:18 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Pobox-Relay-ID: 185FA588-96BE-11EA-8651-B0405B776F7B-77302942!pb-smtp20.pobox.com Content-Transfer-Encoding: quoted-printable Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Johannes Schindelin via GitGitGadget" writes: > From: Johannes Schindelin > > When this developer tested how the git-sdk-64-minimal artifact could be > served to all the GitHub workflow runs that need it, Azure Blobs looked > like a pretty good choice: it is reliable, fast and we already use it i= n > Git for Windows to serve components like OpenSSL, cURL, etc > > It came as an unpleasant surprise just _how many_ times this artifact > was downloaded. It exploded the bandwidth to a point where the free tie= r > would no longer be enough, threatening to block other, essential Git fo= r > Windows services. > > Let's switch back to using the Build Artifacts of our trusty Azure > Pipeline for the time being. > > To avoid unnecessary hammering of the Azure Pipeline artifacts, we use > the GitHub Action `actions/upload-artifact` in the `windows-build` job > and the GitHub Action `actions/download-artifact` in the `windows-test` > and `vs-test` jobs (the latter now depends on `windows-build` for that > reason, too). > > Helped-by: =C4=90o=C3=A0n Tr=E1=BA=A7n C=C3=B4ng Danh > Signed-off-by: Johannes Schindelin > --- > =20 > Change since v1: > =20 > * Simplifying the scripted code by using jq (thanks, Danh!) Thanks, both. Will replace and let's merge it down before -rc1.