From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 78E596DE00C4 for ; Thu, 17 Aug 2017 10:54:19 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.067 X-Spam-Level: X-Spam-Status: No, score=-0.067 tagged_above=-999 required=5 tests=[AWL=-0.106, FREEMAIL_FORGED_FROMDOMAIN=0.249, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.211, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vzG9d_DUEgxG for ; Thu, 17 Aug 2017 10:54:19 -0700 (PDT) Received: from mail-wr0-f195.google.com (mail-wr0-f195.google.com [209.85.128.195]) by arlo.cworth.org (Postfix) with ESMTPS id 938AD6DE034D for ; Thu, 17 Aug 2017 10:54:18 -0700 (PDT) Received: by mail-wr0-f195.google.com with SMTP id p8so3622367wrf.2 for ; Thu, 17 Aug 2017 10:54:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=H+clxvbTJMDWZJnx6PCWsB2/siuSxskuHKstvfle3HM=; b=V9YX6iqkxU5W6sBVAQOErT7icSzg5fbHDM60HAk6tbHXoK6qLzBIkHCYIyYoXyXzSK 3kuher3Q5yEVtJKWLJvEEEMP357SM9NAUKZhL1HSgiZ1iaYxxWfIM9BFN7JBzl45l64/ IsHSQ9CsNJM4Zt/YVPDYM7JAH0Ra84rAR98yMNEIdnm8Q9HMojbzjdzkysvxYEN+XB/y /dlrxiasVQQhgfF2Xi2mhq6PppufB5AKyd5woGsu5XWuoStnF5bG6W1CesmQc9Wm5/Dc XMafcshtjRF7CRZN/t0baGfxCWPN/pY4o0krGtR9Y/LmFjoawiDrI1OHD+EEx+xllRLi r54A== X-Gm-Message-State: AHYfb5hGqkqhbk8hNv7Zz1gz44JxgHAneQFuUUgrRWRnUMm33ipGE9B1 vQEgXdEGP3NsdXniG1M= X-Received: by 10.223.165.82 with SMTP id j18mr4351855wrb.147.1502992456955; Thu, 17 Aug 2017 10:54:16 -0700 (PDT) Received: from home.thecybershadow.net ([89.28.117.31]) by smtp.gmail.com with ESMTPSA id c34sm4345025wra.80.2017.08.17.10.54.15 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 17 Aug 2017 10:54:15 -0700 (PDT) From: Vladimir Panteleev To: notmuch@notmuchmail.org Subject: [PATCH 1/7] .travis.yml: Invoke `make download-test-databases' before running tests Date: Thu, 17 Aug 2017 17:51:39 +0000 Message-Id: <20170817175145.3204-2-notmuch@thecybershadow.net> X-Mailer: git-send-email 2.13.3 In-Reply-To: <20170817175145.3204-1-notmuch@thecybershadow.net> References: <20170817175145.3204-1-notmuch@thecybershadow.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 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: Thu, 17 Aug 2017 17:54:19 -0000 Download the test message database used for the T530-upgrade.sh test. If the additional load on the web server is undesired, Travis can be instructed to cache the file. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 6bd397ef..d1aa68b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ before_install: script: - ./configure + - make download-test-databases - make test # notifications: -- 2.13.3