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 E3721431FD2 for ; Fri, 23 May 2014 10:52:10 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 x3RLDwN3NK5R for ; Fri, 23 May 2014 10:52:03 -0700 (PDT) Received: from mail-pb0-f44.google.com (mail-pb0-f44.google.com [209.85.160.44]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id E5D1B431FC7 for ; Fri, 23 May 2014 10:52:02 -0700 (PDT) Received: by mail-pb0-f44.google.com with SMTP id rq2so4450126pbb.31 for ; Fri, 23 May 2014 10:52:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=yHXHiTx6t/P4ssC/kg6jONvOZtVSfdKxrasqgw3IN5Q=; b=NRa1l95sEjiwyzWfPSqTcG5essIXHTiQFhiJELb0oUrdXlfoDohLlGFCidMximTTAc jcCLrKABWj+j5Kj1/juK+RGTkE5fWomz6DJZttbxlvVb+svyQV9qGshB2evIjSR8FdNK OQ6WWtmvDGLOVM7/9Yr4itEH2Bsb6gjX4lej8jKxQMuzcJn71edKLDY5SpJLwFiwxMkv UoFWRh9rFMtaRx0IwMMD+b3VoAoSLeu4Bygkjk2cvRHWqc9883g+gPWSp0CGpxtEx3y3 wkkfZSu522ODprYItdmKGypQJndYW9SdjQvJBdok5vkGg8M7eXyKh6fISE1jEH0xglqy NQhg== X-Received: by 10.68.164.67 with SMTP id yo3mr8093270pbb.104.1400867520877; Fri, 23 May 2014 10:52:00 -0700 (PDT) Received: from localhost ([2620:0:1000:2e00:c1c4:277b:bfbd:6cc4]) by mx.google.com with ESMTPSA id fe2sm5619798pbc.68.2014.05.23.10.51.59 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 23 May 2014 10:52:00 -0700 (PDT) From: "Wael M. Nasreddine" To: notmuch@notmuchmail.org Subject: [PATCH v3] Enable Travis-CI as a backup continuous integration service. Date: Fri, 23 May 2014 10:51:48 -0700 Message-Id: <1400867508-21478-2-git-send-email-wael.nasreddine@gmail.com> X-Mailer: git-send-email 1.9.1.423.g4596e3a In-Reply-To: <1400867508-21478-1-git-send-email-wael.nasreddine@gmail.com> References: <1400867508-21478-1-git-send-email-wael.nasreddine@gmail.com> 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, 23 May 2014 17:52:11 -0000 You can access the dashboard at https://travis-ci.org/notmuch/notmuch --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..dff57a7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: c +before_install: + - sudo apt-get update -qq + - sudo apt-get install dtach libxapian-dev libgmime-2.6-dev libtalloc-dev python-sphinx + + # Notmuch requires zlib 1.2.5.2, unfortunately travis runs on Ubuntu 12.04LTS which + # ships with zlib 1.2.3.3. We need to update to zlib 1.2.5.2 to be able to build. + # TODO: Watch https://github.com/travis-ci/travis-ci/issues/2046 and remove + # this hack once travis-ci switches to Ubuntu 14.04 + - wget 'https://github.com/notmuch/travis-files/raw/master/zlib1g-dev_1.2.8.dfsg-1ubuntu1_amd64.deb' + - wget 'https://github.com/notmuch/travis-files/raw/master/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 + +script: + - ./configure + - make test +notifications: + irc: "chat.freenode.net#notmuch" -- 1.9.1.423.g4596e3a