From patchwork Mon Jun 25 11:27:18 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 934194 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41Dn2h5PNtz9ry1; Mon, 25 Jun 2018 21:27:24 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1fXPeS-0004UA-R0; Mon, 25 Jun 2018 11:27:20 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.86_2) (envelope-from ) id 1fXPeQ-0004Tk-VC for fwts-devel@lists.ubuntu.com; Mon, 25 Jun 2018 11:27:18 +0000 Received: from 1.general.cking.uk.vpn ([10.172.193.212] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fXPeQ-00045e-Lv; Mon, 25 Jun 2018 11:27:18 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] Add travis yaml file to automate builds on github Date: Mon, 25 Jun 2018 12:27:18 +0100 Message-Id: <20180625112718.4578-1-colin.king@canonical.com> X-Mailer: git-send-email 2.17.0 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" From: Colin Ian King This adds a travis YAML file the automates builds when I sync fwts to github allowing fast sanity build checks. Signed-off-by: Colin Ian King Acked-by: Alex Hung Acked-by: Ivan Hu --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..46d4c4ea --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +dist: trusty +sudo: required + +before_install: + - sudo apt-get update -q + - sudo apt-get install build-essential autoconf automake libtool libjson-c-dev flex bison dkms libglib2.0-dev libfdt-dev + +language: c + +script: +- autoreconf -ivf; ./configure; make