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 14A67431FBC for ; Mon, 2 Jun 2014 14:28: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 cbd0s8QmoGdX for ; Mon, 2 Jun 2014 14:28:02 -0700 (PDT) Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 4DCBF431FAF for ; Mon, 2 Jun 2014 14:28:02 -0700 (PDT) Received: by mail-pa0-f49.google.com with SMTP id fa1so3549734pad.22 for ; Mon, 02 Jun 2014 14:28:01 -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=R+ouiioVHdLzXTp/Obi9689LYX3yC0IGzHOFzldT83A=; b=Ucgn8KrLaFtnOtZfR18OP8m0x6cWJDThnY2OYutdDXpHbw+xttWm9divpM2LGPowhC z5oWEKdWEgPVhFJrp2T4CntaldH8rlQYPeVieumSCU3YB4+BE8mvTS5fshXI4BXVUbfS 8eRzfUv5Czx1CY4t2x5Cq5rDEZxizACwn8SPmMv+VP/rLNV9Gf6VuMLY/Ekrdc1AuJvx kocfJcW+7jf9qKRxDGrRdhgkBDNl0mqFs85uOs1P9/Fz79mpkVmpwSvUAo1Gxp9HAYs6 qbNmGtS6CoyE/G/LZVuQCtkt7TaTED9Aez9T2b/QkiR61rRhlJSDC1dx+gJyaKtJ3BVF 8nyg== X-Received: by 10.66.163.98 with SMTP id yh2mr13581411pab.104.1401744481591; Mon, 02 Jun 2014 14:28:01 -0700 (PDT) Received: from localhost ([2620:0:1000:2e00:f0d8:7d1d:4635:8ec1]) by mx.google.com with ESMTPSA id rc3sm22080624pbc.5.2014.06.02.14.28.00 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 02 Jun 2014 14:28:00 -0700 (PDT) From: "Wael M. Nasreddine" To: notmuch@notmuchmail.org Subject: [PATCH v4] Enable Travis-CI as a backup continuous integration service. Date: Mon, 2 Jun 2014 14:27:52 -0700 Message-Id: <1401744472-29770-2-git-send-email-wael.nasreddine@gmail.com> X-Mailer: git-send-email 1.9.1.423.g4596e3a In-Reply-To: <1401744472-29770-1-git-send-email-wael.nasreddine@gmail.com> References: <1401744472-29770-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: Mon, 02 Jun 2014 21:28:10 -0000 --- .travis.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..05659dd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,32 @@ +language: c +before_install: + # Install dependencies + - sudo apt-get update -qq + - sudo apt-get install dtach libxapian-dev libgmime-2.6-dev libtalloc-dev python-sphinx + + # Install EVM and the version of emacs to be used. + - sudo mkdir /usr/local/evm + - sudo chown travis:travis /usr/local/evm + - curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash + - export PATH="/home/travis/.evm/bin:$PATH" + - evm install $EVM_EMACS --use + + # 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 + +env: + - EVM_EMACS=emacs-23.4-bin + - EVM_EMACS=emacs-24.3-bin + +script: + - ./configure + - make test + +notifications: + irc: "chat.freenode.net#notmuch" \ No newline at end of file -- 1.9.1.423.g4596e3a