From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 6B6F07F84F for ; Mon, 24 Feb 2014 20:15:16 +0100 (CET) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of ju.sagot@gmail.com) identity=pra; client-ip=209.85.216.42; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="ju.sagot@gmail.com"; x-sender="ju.sagot@gmail.com"; x-conformance=sidf_compatible Received-SPF: Pass (mail3-smtp-sop.national.inria.fr: domain of ju.sagot@gmail.com designates 209.85.216.42 as permitted sender) identity=mailfrom; client-ip=209.85.216.42; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="ju.sagot@gmail.com"; x-sender="ju.sagot@gmail.com"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@mail-qa0-f42.google.com) identity=helo; client-ip=209.85.216.42; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="ju.sagot@gmail.com"; x-sender="postmaster@mail-qa0-f42.google.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AowBAMSZC1PRVdgqlGdsb2JhbABZEwEBgyxXwh4IFg4BAQEBBwsLCRIqgmwBGx4DEhBdAREBBQE9h2gBAxENlkCDCoxegw6VCAoZJw1khhsBBQyOdYQiBJg0gTKPCBgphFo7 X-IPAS-Result: AowBAMSZC1PRVdgqlGdsb2JhbABZEwEBgyxXwh4IFg4BAQEBBwsLCRIqgmwBGx4DEhBdAREBBQE9h2gBAxENlkCDCoxegw6VCAoZJw1khhsBBQyOdYQiBJg0gTKPCBgphFo7 X-IronPort-AV: E=Sophos;i="4.97,536,1389740400"; d="scan'208";a="50338646" Received: from mail-qa0-f42.google.com ([209.85.216.42]) by mail3-smtp-sop.national.inria.fr with ESMTP/TLS/RC4-SHA; 24 Feb 2014 20:15:15 +0100 Received: by mail-qa0-f42.google.com with SMTP id k4so6853971qaq.29 for ; Mon, 24 Feb 2014 11:15:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=8vP2g9vGJbjCX9ohvezkJr8AV5edaLCJILla8d3ytsY=; b=MD/cFWaY2U6s7KuNqi8JDLYhk8JmyOTkG2fZIQxKRMK3JxZCtIBZY0h3Qruv/2A1+P L2zWhYmi0Dvujaf48m1m0b7kT4hM6JKroEVNWtLQXfBe3qwrCzb8416wEojsP+j0X2ys dO7S0fdri1LfgRXR1sHD2XRE0j37AC8u1Z34hmzV8EhLo2gygA63jt8MEHqgp1nxpcHO 5g6YEH2JByhJytCsN0SvRYCHCT2GJ692aHMs7WZ+3QYshPC/ui7rw8zQYPu9MNHPXMNH 6RX5rNr2ZYSrM0yW/056JL18I+KMGBYcAJsncXQzAJ78ohWvI3Dvx7tmM8KTVx5ipsef 3jKw== MIME-Version: 1.0 X-Received: by 10.140.29.38 with SMTP id a35mr31101485qga.55.1393269314498; Mon, 24 Feb 2014 11:15:14 -0800 (PST) Received: by 10.140.21.198 with HTTP; Mon, 24 Feb 2014 11:15:14 -0800 (PST) Date: Mon, 24 Feb 2014 20:15:14 +0100 Message-ID: From: Julien Sagot To: caml-list@inria.fr Content-Type: text/plain; charset=ISO-8859-1 Subject: [Caml-list] Using bisect and coveralls.io Dear list, I would like to let you know that using https://coveralls.io (code coverage history and stats) is now possible for ocaml projects. Xavier Clerc modified his bisect tool, adding coveralls output, and I wrote a little script to automatically set missing fields and send it to coveralls.io See it here: https://github.com/sagotch/ocveralls As modified version of bisect as not been released yet, you need to install it from sources. I uploaded it on my website, so you can use this archive directly. See an example of how to install it on travis here: https://github.com/sagotch/ocveralls/blob/master/.travis-ci.sh#L24 Compile your project as usual, and call the script as you would call bisect-report, omitting the output format/name parameters. Examples here: https://github.com/sagotch/ocveralls/blob/master/.travis.yml#L11 or here: https://github.com/pastek-project/pastek/blob/master/.travis.yml#L11 Any comment or improvement (pull request would be the best) is welcome. Any confirmation that it works on other platform than travis-ci would be great. Cheers, Julien Sagot