From patchwork Wed Nov 13 11:26:48 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 11241743 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 428151515 for ; Wed, 13 Nov 2019 11:27:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1A46D2245C for ; Wed, 13 Nov 2019 11:27:14 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="FxLv3krx" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727936AbfKML1N (ORCPT ); Wed, 13 Nov 2019 06:27:13 -0500 Received: from us-smtp-2.mimecast.com ([207.211.31.81]:45896 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727733AbfKML1M (ORCPT ); Wed, 13 Nov 2019 06:27:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573644431; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DRnn3I7+CMe5tSFVJiYe3vzKe25C9XarD+qgUqrzjoM=; b=FxLv3krxvD4bb4FXHQAXf9URkDDnS66LweykYAjmUgQG9UgJEFHZFuPpwvzHfPtZBB00Ic 88xSuaQRej+L2KfkSdFgy/1oLrmAzDNRjFU3oPgex4diDlKTpsS/2s+LVHY+20LFzLCIls EsDM9p53W/qBaKeC+9s9nFkA/RNyghs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-195-nFCej38CMEOthDgBZL7D0Q-1; Wed, 13 Nov 2019 06:27:10 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BC72F477; Wed, 13 Nov 2019 11:27:09 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-116-183.ams2.redhat.com [10.36.116.183]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7D3ED6046B; Wed, 13 Nov 2019 11:27:02 +0000 (UTC) From: Thomas Huth To: kvm@vger.kernel.org, Paolo Bonzini Cc: David Hildenbrand , =?utf-8?q?Alex_Benn=C3=A9e?= Subject: [kvm-unit-test PATCH 4/5] travis.yml: Test the i386 build, too Date: Wed, 13 Nov 2019 12:26:48 +0100 Message-Id: <20191113112649.14322-5-thuth@redhat.com> In-Reply-To: <20191113112649.14322-1-thuth@redhat.com> References: <20191113112649.14322-1-thuth@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-MC-Unique: nFCej38CMEOthDgBZL7D0Q-1 X-Mimecast-Spam-Score: 0 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org After installing gcc-multilib, we can also test the 32-bit builds on Travis. Signed-off-by: Thomas Huth Reviewed-by: Alex Bennée --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.travis.yml b/.travis.yml index f91118c..9ceb04d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,6 +29,21 @@ matrix: vmexit_tscdeadline_immed vmx_apic_passthrough_thread syscall" - ACCEL="kvm" + - addons: + apt_packages: gcc gcc-multilib qemu-system-x86 + env: + - CONFIG="--arch=i386" + - BUILD_DIR="." + - TESTS="eventinj port80 sieve tsc taskswitch umip vmexit_ple_round_robin" + + - addons: + apt_packages: gcc gcc-multilib qemu-system-x86 + env: + - CONFIG="--arch=i386" + - BUILD_DIR="i386-builddir" + - TESTS="vmexit_mov_from_cr8 vmexit_ipi vmexit_ipi_halt vmexit_mov_to_cr8 + vmexit_cpuid vmexit_tscdeadline vmexit_tscdeadline_immed" + - addons: apt_packages: gcc-arm-linux-gnueabihf qemu-system-arm env: