Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:118237 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 49055 invoked from network); 10 Jul 2022 18:12:48 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 10 Jul 2022 18:12:48 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 2E0E7180384 for ; Sun, 10 Jul 2022 13:06:53 -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=-0.2 required=5.0 tests=BAYES_40,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS13238 77.88.0.0/18 X-Spam-Virus: No X-Envelope-From: Received: from forward108p.mail.yandex.net (forward108p.mail.yandex.net [77.88.28.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Sun, 10 Jul 2022 13:06:52 -0700 (PDT) Received: from iva3-2436f5349071.qloud-c.yandex.net (iva3-2436f5349071.qloud-c.yandex.net [IPv6:2a02:6b8:c0c:498b:0:640:2436:f534]) by forward108p.mail.yandex.net (Yandex) with ESMTP id DF4D8267434A for ; Sun, 10 Jul 2022 23:06:49 +0300 (MSK) Received: from iva3-dd2bb2ff2b5f.qloud-c.yandex.net (iva3-dd2bb2ff2b5f.qloud-c.yandex.net [2a02:6b8:c0c:7611:0:640:dd2b:b2ff]) by iva3-2436f5349071.qloud-c.yandex.net (mxback/Yandex) with ESMTP id SJg58HMmcB-6ngC2EX2; Sun, 10 Jul 2022 23:06:49 +0300 X-Yandex-Fwd: 2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=php.watch; s=mail; t=1657483609; bh=JNjPhPMwoxqVjbhILh0Vayq3Auwd2hPzVwgAMt7M9N8=; h=Subject:Date:From:Message-ID:To; b=j1FUgR3EHsFyMuV/bcgx9z66xS80GSDhK3qJvMDL4xWoWIM6jyS3eOCQgPkZN7K98 Y+otM11JPmSeRYMzJNc81wS6CSuR3Ce9aSTdeJU1oshIm83PSmDs2KLmMa9wNdx+JX YBExubJQ0MkMRVCeZUg0DzT4WzqYXwVqLdDp+lRY= Authentication-Results: iva3-2436f5349071.qloud-c.yandex.net; dkim=pass header.i=@php.watch Received: by iva3-dd2bb2ff2b5f.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 9ujOYE4QYp-6ndqAEri; Sun, 10 Jul 2022 23:06:49 +0300 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client certificate not present) Received: by mail-qk1-f171.google.com with SMTP id f14so2635463qkm.0 for ; Sun, 10 Jul 2022 13:06:49 -0700 (PDT) X-Gm-Message-State: AJIora88ryINikoTZofDPrGDm1H1JxKWv5GVGRmohYgOeXUemdhFKh0P xG/dfMjT/lbj1q3JnKSfCukiegyxAXpt+1CiwcM= X-Google-Smtp-Source: AGRyM1sErt2Eyk5EQryu6DIp3KdqYEf+3kxzQwxXNjMmGvxkyKQn3zU3wQK5YY0Oi/NcBSfnwdr7XPYj6GEwrzywBgQ= X-Received: by 2002:a05:620a:46a1:b0:6af:3bc3:dd89 with SMTP id bq33-20020a05620a46a100b006af3bc3dd89mr9327970qkb.18.1657483607722; Sun, 10 Jul 2022 13:06:47 -0700 (PDT) MIME-Version: 1.0 Date: Mon, 11 Jul 2022 01:36:21 +0530 X-Gmail-Original-Message-ID: Message-ID: To: PHP internals Content-Type: text/plain; charset="UTF-8" Subject: Removing Travis CI From: ayesh@php.watch (Ayesh Karunaratne) Dear Internals, Historically, we have been using Travis CI for our automated tests, but since 2021 June, travis-ci.org has ceased operations, and no longer runs any builds. There was an Internals discussion (https://externals.io/message/112709) to move to the successor, travis-ci.com, but I don't think we ever moved there. Quoting Nikita from that thread: > We haven't been using Travis as our primary CI for a while already. We use > AppVeyor for Windows testing and Azure Pipelines for everything else. The > only thing Travis is still used for is a daily cron job that tests PHP on > "exotic" architectures like aarch64 and s390x. Having those builds is a > nice to have, but not particularly critical. As far as I see, Travis does not run php-src builds anymore; neither on push, nor on cron. https://travis-ci.org/github/php/php-src leads to a page that says the project was moved to travis-ci.com, and the linked page (https://travis-ci.com/php/php-src) throws a 404. I think we have now fully moved to GitHub Actions (thanks to amazing efforts by Ilija) + Azure Pipelines + Appveyor + Circle CI, so perhaps it's time we remove all the Travis-related code from php-src? I'd gladly volunteer for it, if we reach a consensus to remove it. Thank you, Ayesh.