Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:118228 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 1589 invoked from network); 8 Jul 2022 17:32:43 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 8 Jul 2022 17:32:43 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 3FE22180381 for ; Fri, 8 Jul 2022 12:26:16 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: * X-Spam-Status: No, score=1.3 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,HTML_MESSAGE,RCVD_IN_MSPIKE_H2, SPF_HELO_NONE,SPF_SOFTFAIL,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS15169 209.85.128.0/17 X-Spam-Virus: No X-Envelope-From: Received: from mail-yw1-f174.google.com (mail-yw1-f174.google.com [209.85.128.174]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 8 Jul 2022 12:26:15 -0700 (PDT) Received: by mail-yw1-f174.google.com with SMTP id 00721157ae682-31cac89d8d6so137738687b3.2 for ; Fri, 08 Jul 2022 12:26:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=9nmjiKP4arWUqjsQrFLe8RvfZcFXIccascFaLDjd8pY=; b=INQhd+8qigsGpMktWPMBjLimEoLxqmo0ItZ5uCe12j7Nu++KY7LFC3M462BdHuYECF iDjZZ4QQ4YbNjLuKaK0BQhjv4f8MnBCOyC4tStyJGyz17MmkoeE9ORvKhqvORJbc3ls4 YPG7dLZoYouU0vkRvk4kzfVsgfn4uJH5+1hZWpO2S3TVohVkVyEb1GcfBDWq865mpXhT BpiVeNcwh2GYkb5wHw/m4z/DM7EAzLwTERwUFlsexSji6GgSei655UuV+PbNjXHeg8X2 if+afeRFzyRj46o1aQ1vum0/AzkYG9p6CtABSc9DP0IspG1PyQ/SoLsJacvDyoWxdUm2 zFqA== X-Gm-Message-State: AJIora9nNdGbd5JFqQH4y1R9LVwDpXVcoP213PelVeH1PDbZMOIdZpnt jJ6jgeNjHSy/mfN6GgHlHJuSX9XRkWYbJHc+13OhkA== X-Google-Smtp-Source: AGRyM1v+I0rfRW7U7kjfnQS77Wq29EbOma0e7FwkVkLBluVyLwpCDdbsGFmbxFcnwYHMJwhW/hn0dkE1ZFZnHp0tj/Y= X-Received: by 2002:a0d:f5c7:0:b0:31c:b37b:90cf with SMTP id e190-20020a0df5c7000000b0031cb37b90cfmr5676149ywf.221.1657308374850; Fri, 08 Jul 2022 12:26:14 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Fri, 8 Jul 2022 14:26:04 -0500 Message-ID: To: Derick Rethans Cc: PHP internals , "Christoph M. Becker" Content-Type: multipart/alternative; boundary="000000000000f7797d05e3502c39" Subject: Re: [PHP-DEV] What to do with qa.php.net? From: pollita@php.net (Sara Golemon) --000000000000f7797d05e3502c39 Content-Type: text/plain; charset="UTF-8" On Fri, Jul 8, 2022 at 9:48 AM Derick Rethans wrote: > I don't however think we should stick these QA builds in the web-downloads Git Repository though. It is growing big enough already and there was some earlier talk about moving them to Git LFS instead. I don't know how feasible or proprietary that is though. > Oh sure, no. We'll keep the bit of the QA version struct that points at the downloads path (maybe making all by the userpath portion hardcoded because the rest never changes) and construct from there. Something like: [ 'version' => '8.2.0beta3', 'date' => '18 Aug 2022', 'download_path' => 'https://downloads.php.net/~ramsey', 'sha256' => [ 'tar.gz' => 'deadbeefcafe', 'tar.bz2' => '...', 'tar.xz' => '...', ], // 8.1, 8.0, etc... ]; Then on php.net/downloads/testing we list the active alpha/beta/RC builds like we have on php.net/downloads (and which we link from there). Probably make a nice JSON endpoint as well, because why not? -Sara --000000000000f7797d05e3502c39--