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 75330429E3C for ; Wed, 14 May 2014 15:53:44 -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 mxjHWB2YdjnT for ; Wed, 14 May 2014 15:53:37 -0700 (PDT) Received: from mail-pb0-f47.google.com (mail-pb0-f47.google.com [209.85.160.47]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 2D171431FBD for ; Wed, 14 May 2014 15:53:37 -0700 (PDT) Received: by mail-pb0-f47.google.com with SMTP id rp16so204002pbb.20 for ; Wed, 14 May 2014 15:53:36 -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=lCXzAyVII43cDUuuuroTj39nFNR1F5wSwy3h8sQBiYY=; b=tW9uWrp6F+YxXhcJLKopXkqxOz621X1OHvP0/KO9h5hfybew8p1B9L0YzF4oEvj3wy +Z79hJrH58E0TEqL9B0RaNlyQJKK1LyYutkXZvxQrXWsc56dEtZl5v+tNylNoblphYvs Eg3CMam9ys6leuHnvUfoba1IVm8ffvojX4U3MvtAPLPeERUkb6thE6ectjuXN2FFkHKy z50pXoy/a7sRo4kU2lmbxKbqVD32E0PQl+dVqkjwv5PLwwKdzyrnVQNDhGYSCGKbA9Nm OTUMBFtw/5axFnJJqksXq0GipCA6S0EHM/UlIGbs3X4L2n03/sjn6wCNwtwVYx+pPPoF nhvg== X-Received: by 10.68.218.3 with SMTP id pc3mr7682167pbc.71.1400108016490; Wed, 14 May 2014 15:53:36 -0700 (PDT) Received: from localhost ([2620:0:1000:2e00:6583:61c9:b00c:8483]) by mx.google.com with ESMTPSA id fk4sm13005927pab.23.2014.05.14.15.53.35 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 14 May 2014 15:53:35 -0700 (PDT) From: "Wael M. Nasreddine" To: notmuch@notmuchmail.org Subject: [PATCH v2] Enable Travis-CI as a backup continuous integration service. Date: Wed, 14 May 2014 15:53:24 -0700 Message-Id: <1400108004-26955-2-git-send-email-wael.nasreddine@gmail.com> X-Mailer: git-send-email 1.9.1.423.g4596e3a In-Reply-To: <1400108004-26955-1-git-send-email-wael.nasreddine@gmail.com> References: <1400108004-26955-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: Wed, 14 May 2014 22:53:44 -0000 You can access the dashboard at https://travis-ci.org/notmuch/notmuch --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e8c3011 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +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 +notifications: + irc: "chat.freenode.net#notmuch" -- 1.9.1.423.g4596e3a