Return-Path: X-Original-To: apmail-celix-commits-archive@www.apache.org Delivered-To: apmail-celix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 19C0518680 for ; Tue, 27 Oct 2015 15:21:12 +0000 (UTC) Received: (qmail 55181 invoked by uid 500); 27 Oct 2015 15:21:07 -0000 Delivered-To: apmail-celix-commits-archive@celix.apache.org Received: (qmail 55103 invoked by uid 500); 27 Oct 2015 15:21:07 -0000 Mailing-List: contact commits-help@celix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@celix.apache.org Delivered-To: mailing list commits@celix.apache.org Received: (qmail 54755 invoked by uid 99); 27 Oct 2015 15:21:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Oct 2015 15:21:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CE5A4DFF8A; Tue, 27 Oct 2015 15:21:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pnoltes@apache.org To: commits@celix.apache.org Date: Tue, 27 Oct 2015 15:21:19 -0000 Message-Id: <8552331b92de484d941b9c89134f8916@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [14/50] celix git commit: CELIX-237: Updated travis to compile and install latest libffi CELIX-237: Updated travis to compile and install latest libffi Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/331417b2 Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/331417b2 Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/331417b2 Branch: refs/heads/feature/CELIX-230_Refactoring_of_the_shell_command_service Commit: 331417b2ad84fd2f16e49eac9073c15e89d29af3 Parents: b5b0e72 Author: Pepijn Noltes Authored: Wed Oct 14 10:07:24 2015 +0200 Committer: Pepijn Noltes Committed: Wed Oct 14 10:07:24 2015 +0200 ---------------------------------------------------------------------- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/331417b2/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index fc886bc..8911bc7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: c before_install: - sudo apt-get update -qq - - sudo apt-get install -y uuid-dev libjansson-dev libxml2-dev lcov libffi-dev pkg-config + - sudo apt-get install -y uuid-dev libjansson-dev libxml2-dev lcov pkg-config matrix: include: @@ -18,6 +18,11 @@ before_script: - cmake -DJANSSON_BUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX=/usr . && make - sudo make install - cd - + - wget ftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gz -O /tmp/libffi.tar.gz + - tar xzf /tmp/libffi.tar.gz + - cd libffi* + - ./configure --prefix=/usr && make && sudo make install + - cd - - mkdir build install script: