From 1d17116ac10da283dd2fce710c0907be9279a54f Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Sat, 10 May 2014 14:44:50 +1700 Subject: [PATCH] [PATCH v2] Enable Travis-CI as a backup continuous integration service. --- 00/2f2ac9bd520a379d8788cab3b7b3b34f9a8370 | 93 +++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 00/2f2ac9bd520a379d8788cab3b7b3b34f9a8370 diff --git a/00/2f2ac9bd520a379d8788cab3b7b3b34f9a8370 b/00/2f2ac9bd520a379d8788cab3b7b3b34f9a8370 new file mode 100644 index 000000000..0f14c7a16 --- /dev/null +++ b/00/2f2ac9bd520a379d8788cab3b7b3b34f9a8370 @@ -0,0 +1,93 @@ +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 16EB7431FBF + for ; Fri, 9 May 2014 14:45:16 -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 NLxmOthURC02 for ; + Fri, 9 May 2014 14:45:10 -0700 (PDT) +Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com + [209.85.220.52]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 6E020431FBC + for ; Fri, 9 May 2014 14:45:10 -0700 (PDT) +Received: by mail-pa0-f52.google.com with SMTP id fa1so752914pad.11 + for ; Fri, 09 May 2014 14:45:09 -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; + bh=etNlgpxMLIcVVVZARimax+bTQxTQ3V9ThgFh8kaCPFE=; + b=W7tuJTFyCxj9h7roFfKckx6nfrmyjpubvuBTMRbSJ7x6WbsV6KpwHNG73uPu/JL6L3 + VpEakYscNbIMGE7BsPsQcHkH7adFfPEAO3cn7ttzSN7bbeWnyOO5ajKVRDoJRNkPO4Nk + p39EuFc8SRBLDyuFdx/JhxZxiJyapU72/O0VYfdHpRIQkl8xPNasVS8KNKx2FJMj4D9B + FimlaMpOpRrAqJRCAV420z+/aJAq80qAX5/pJ2sF5RFuRaScoXcRDdkSuxt5HEd0ngVT + UdVAkLlYYBFg7P/8QSdGJjPVkHoHw9IprGECoer/4c8tEqjG2ESCC57cAuJVnx912Zl0 + StQA== +X-Received: by 10.66.147.99 with SMTP id tj3mr24959089pab.47.1399671909731; + Fri, 09 May 2014 14:45:09 -0700 (PDT) +Received: from localhost ([2620:0:1000:2e00:d44e:e60e:117d:3ca3]) + by mx.google.com with ESMTPSA id op3sm9317929pbc.40.2014.05.09.14.45.07 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Fri, 09 May 2014 14:45:08 -0700 (PDT) +From: "Wael M. Nasreddine" +To: notmuch@notmuchmail.org +Subject: [PATCH v2] Enable Travis-CI as a backup continuous integration + service. +Date: Fri, 9 May 2014 14:44:50 -0700 +Message-Id: <1399645162-8653-1-git-send-email-wael.nasreddine@gmail.com> +X-Mailer: git-send-email 1.9.1.423.g4596e3a +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 21:45:16 -0000 + +You can access the dashboard at https://travis-ci.org/notmuch/notmuch +--- + +The v2 adds a notification section to send failure (or back to passing) notifications +to the mailing list and to the IRC channel + + .travis.yml | 13 +++++++++++++ + 1 file changed, 13 insertions(+) + create mode 100644 .travis.yml + +diff --git a/.travis.yml b/.travis.yml +new file mode 100644 +index 0000000..1274ac9 +--- /dev/null ++++ b/.travis.yml +@@ -0,0 +1,13 @@ ++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: ++ email: notmuch@notmuchmail.org ++ irc: "chat.freenode.net#notmuch" +-- +1.9.1.423.g4596e3a + -- 2.26.2