From: Tomi Ollila Date: Fri, 9 May 2014 15:16:23 +0000 (+0300) Subject: Re: [PATCH] Add Travis-CI config file. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=64bab7640e81fb10aea5303d8260de7da60b7a8c;p=notmuch-archives.git Re: [PATCH] Add Travis-CI config file. --- diff --git a/56/568f05b17f2ac9a938722ba0dd83ec85dd30e2 b/56/568f05b17f2ac9a938722ba0dd83ec85dd30e2 new file mode 100644 index 000000000..054c4c0ef --- /dev/null +++ b/56/568f05b17f2ac9a938722ba0dd83ec85dd30e2 @@ -0,0 +1,90 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id EB80D431FBF + for ; Fri, 9 May 2014 08:16:35 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] + autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id e0j68T7Cn+VW for ; + Fri, 9 May 2014 08:16:30 -0700 (PDT) +Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) + by olra.theworths.org (Postfix) with ESMTP id EB0B4431FBC + for ; Fri, 9 May 2014 08:16:29 -0700 (PDT) +Received: from guru.guru-group.fi (localhost [IPv6:::1]) + by guru.guru-group.fi (Postfix) with ESMTP id E62121000E5; + Fri, 9 May 2014 18:16:23 +0300 (EEST) +From: Tomi Ollila +To: "Wael M. Nasreddine" , notmuch@notmuchmail.org +Subject: Re: [PATCH] Add Travis-CI config file. +In-Reply-To: <1399645162-8653-1-git-send-email-wael.nasreddine@gmail.com> +References: <1399645162-8653-1-git-send-email-wael.nasreddine@gmail.com> +User-Agent: Notmuch/0.18+11~gbc95cc5 (http://notmuchmail.org) Emacs/24.3.1 + (x86_64-unknown-linux-gnu) +X-Face: HhBM'cA~ +MIME-Version: 1.0 +Content-Type: text/plain +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Fri, 09 May 2014 15:16:36 -0000 + +On Fri, May 09 2014, "Wael M. Nasreddine" wrote: + +> --- + +Could this work so, that there is separate repo whete .travis.yml resides +and notmuch is there as a git submodule ? + +To my eyes this approach looks pretty intrusive: the repository root +directory is polluted with specific .travis.yml file and the content is +(apparently) specific to https://travis-ci.org/ (some version of ubuntu) + +That said, I won't be against the inclusion of this in case there are users +that like it (provided that a patch with proper commit message(*) is available). + +Tomi + +(*) http://notmuchmail.org/contributing/ + +> .travis.yml | 10 ++++++++++ +> 1 file changed, 10 insertions(+) +> create mode 100644 .travis.yml +> +> diff --git a/.travis.yml b/.travis.yml +> new file mode 100644 +> index 0000000..8d92cdc +> --- /dev/null +> +++ b/.travis.yml +> @@ -0,0 +1,10 @@ +> +language: c +> +before_install: +> + - sudo apt-get update -qq +> + - wget 'https://launchpad.net/ubuntu/+archive/primary/+files/zlib1g-dev_1.2.8.dfsg-1ubuntu1_amd64.deb' +> + - wget 'https://launchpad.net/ubuntu/+archive/primary/+files/zlib1g_1.2.8.dfsg-1ubuntu1_amd64.deb' +> + - sudo dpkg -i zlib1g-dev_1.2.8.dfsg-1ubuntu1_amd64.deb zlib1g_1.2.8.dfsg-1ubuntu1_amd64.deb +> + - sudo apt-get install -f +> + - sudo apt-get install dtach libxapian-dev libgmime-2.6-dev libtalloc-dev python-sphinx +> + +> +script: make test +> -- +> 1.9.1.423.g4596e3a