From patchwork Tue Jul 19 15:36:27 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 650262 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rv4486N6kz9sBM for ; Wed, 20 Jul 2016 01:40:08 +1000 (AEST) Received: from localhost ([::1]:56761 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPX7t-00064S-KH for incoming@patchwork.ozlabs.org; Tue, 19 Jul 2016 11:40:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54148) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPX4S-0001wD-7X for qemu-devel@nongnu.org; Tue, 19 Jul 2016 11:36:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bPX4Q-00082t-Ex for qemu-devel@nongnu.org; Tue, 19 Jul 2016 11:36:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50201) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPX4Q-00082Z-8i for qemu-devel@nongnu.org; Tue, 19 Jul 2016 11:36:30 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3D9444DB01; Tue, 19 Jul 2016 15:36:29 +0000 (UTC) Received: from localhost (ovpn-112-17.ams2.redhat.com [10.36.112.17]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u6JFaRaL028430; Tue, 19 Jul 2016 11:36:28 -0400 From: Stefan Hajnoczi To: qemu-devel@nongnu.org Date: Tue, 19 Jul 2016 16:36:27 +0100 Message-Id: <1468942587-25179-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Tue, 19 Jul 2016 15:36:29 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] .travis.yml: add ALSA, PulseAudio, and SDL audio drivers X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Stefan Hajnoczi Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Improve code coverage by building Linux audio drivers. Signed-off-by: Stefan Hajnoczi --- This patch triggers the build failure fixed by Peter Maydell's "disas: Fix ATTRIBUTE_UNUSED define clash with ALSA headers". Apply Peter's patch first so that Travis builds stay green. .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index c13881e..2ec8853 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ addons: apt: packages: - libaio-dev + - libasound2-dev - libattr1-dev - libbrlapi-dev - libcap-ng-dev @@ -22,6 +23,7 @@ addons: - libnss3-dev - libpixman-1-dev - libpng12-dev + - libpulse-dev - librados-dev - libsdl1.2-dev - libseccomp-dev @@ -59,6 +61,7 @@ before_install: - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ - git submodule update --init --recursive before_script: + - if [ "$TRAVIS_OS_NAME" == "linux" ]; then CONFIG="$CONFIG --audio-drv-list=alsa,oss,pa,sdl"; fi - ./configure ${CONFIG} script: - make -j3 && ${TEST_CMD}