Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:107113 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 89021 invoked from network); 15 Sep 2019 19:52:24 -0000 Received: from unknown (HELO php-smtp3.php.net) (208.43.231.12) by pb1.pair.com with SMTP; 15 Sep 2019 19:52:24 -0000 Received: from php-smtp3.php.net (localhost [127.0.0.1]) by php-smtp3.php.net (Postfix) with ESMTP id 304302CE852 for ; Sun, 15 Sep 2019 10:29:05 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp3.php.net X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE, SPF_HELO_NONE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: X-Spam-Virus: No Received: from mail-lf1-x132.google.com (mail-lf1-x132.google.com [IPv6:2a00:1450:4864:20::132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp3.php.net (Postfix) with ESMTPS for ; Sun, 15 Sep 2019 10:29:04 -0700 (PDT) Received: by mail-lf1-x132.google.com with SMTP id y127so2414960lfc.0 for ; Sun, 15 Sep 2019 10:29:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=t5JjeQ8wDdJ9EVMAPuHjQt+1GpZYWiCb7og4GlCtlfI=; b=buyrxi+v3Ub2gTdYCzRHiIEML+/gjvsEcR8f6uYtH34D38l7X6zwFqHqNGYSoBkeNy cXoEq8OvkezwtG8QWSX5hWwZkL8bNfcUM5AOgdAz20Z5eoSEOPsJOPqcfEqDAPxdZKwi 2BGA9aNTSum3omnTYgWIBY4q3UO7C/ccqu3NNCzFFzwRO80pq4HaAil1BuEMvbIL04yO pdl+gXY7OdK4RaC33w3YYrvk5ibQ05OcR3WV13kcSdHbRaVC7SYHEQN1A/54ZfMA8bQn qMw7o0KLNGpl2/VXGNHCTUVJJVdeH747PxQrfH0CGkIE8BfH6o0afeh662+NwIj2U51f LeKQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=t5JjeQ8wDdJ9EVMAPuHjQt+1GpZYWiCb7og4GlCtlfI=; b=sAheK3Nv6q0WE0kRqTUYJ1ft9kihSXydnmkoxaqBSIWRIOIxk4jBmo9SpS4HBN81H2 hqjd/czgfYYEUiKjrO8RojWHMEiCxgWpULD6P7buXDoi3uHyKw7FtzOK6I8A1ltJWHiU Bykper3zQRN5JQxpV1lQ+prdxxq3P8qe1Y3kYgUPiWnVktlMFK7o6T5HVYSGbg42SvW8 S1pzAEeF4SVSS2wMKm8A886rUf7+5OINXrHrXN3Am6Ot/HHowvAg0SKN7rC3foM7BY8c 0+BBS98e2BpDfhrGSVi8XrJA7Q4BCz93mwiNX9PRiwl8jCcxzjzyvSmw7Utn+KNve2dz 5O3g== X-Gm-Message-State: APjAAAWd1WyylEQj5nAvDae8CrRtj8/UNAGwuCf3oVtBMVdFdL/Sq0RJ zIpgFHwpEe5ogL6wvYJ35FhIrl7OxeoVMe2Ri5KgTA3xStQ= X-Google-Smtp-Source: APXvYqwpFN9NIuXrrkzwck4U93xrYUSJWZ5kZFKpHX2F7XIiXtOFkOhMN2lbgab6Wq0axR3Qdegz9wDDnwfUEDn9qdo= X-Received: by 2002:ac2:44b9:: with SMTP id c25mr7333290lfm.112.1568568543201; Sun, 15 Sep 2019 10:29:03 -0700 (PDT) MIME-Version: 1.0 Date: Sun, 15 Sep 2019 19:28:46 +0200 Message-ID: To: PHP internals Content-Type: multipart/alternative; boundary="000000000000d2cf2d05929ad263" X-Envelope-From: Subject: Computing code coverage on Azure Pipelines From: nikita.ppv@gmail.com (Nikita Popov) --000000000000d2cf2d05929ad263 Content-Type: text/plain; charset="UTF-8" Hi, gcov.php.net used to provide valgrind reports and code coverage for php-src. It no longer works with 7.4/8.0, because the OS is very old, and building new versions of PHP there gets very hard. The valgrind reports have essentially been subsumed by asan/ubsan on Azure Pipelines, but we're still missing a replacement for code coverage. I think it should be possible to set up an Azure Pipelines job that runs tests with coverage and publishes it, preferably on Azure Pipelines itself, or if that doesn't work something like codecov.io. Maybe someone is interested in giving this a try? Regards, Nikita --000000000000d2cf2d05929ad263--