From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web10.10089.1675430898061935627 for ; Fri, 03 Feb 2023 05:28:18 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=KBLAhKdg; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1675430897; 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=KjeV978Nr6IT4DfWgtWCpvNuop+d2C0JHdXD4l5/dCQ=; b=KBLAhKdgIQzp5RW3wfk1cEWWQzqY/KcZlNignogVE2yciM0HlLoOvK7HsuezNC/zwteudB Fe4vYRftJzc3XADWT7f6n9IUvU55VBhukpapNheSTLgxr3fDIXLUBPSqsYCEKMDOKhm/LU wQ+7i2t27tuZVDxhYZTuvfcTMOXuStc= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-130-jUBFvfIxOGCr-0NoglsG6Q-1; Fri, 03 Feb 2023 08:28:14 -0500 X-MC-Unique: jUBFvfIxOGCr-0NoglsG6Q-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 662541C05135; Fri, 3 Feb 2023 13:28:13 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.85]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EBA3B7AD4; Fri, 3 Feb 2023 13:28:12 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 2153D1801A94; Fri, 3 Feb 2023 14:28:06 +0100 (CET) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Min Xu , Ard Biesheuvel , Gerd Hoffmann , Michael Roth , Jiewen Yao , Jian J Wang , Jordan Justen , Pawel Polawski , Oliver Steffen , Tom Lendacky , Xiaoyu Lu , Erdem Aktas , Guomin Jiang , James Bottomley Subject: [PATCH 06/11] OvmfPkg: add OVMF_X64_CRYPTO_DRIVER test case Date: Fri, 3 Feb 2023 14:28:01 +0100 Message-Id: <20230203132806.2275708-7-kraxel@redhat.com> In-Reply-To: <20230203132806.2275708-1-kraxel@redhat.com> References: <20230203132806.2275708-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true Add one build config with USE_CRYPTO_DRIVER=TRUE to CI. Signed-off-by: Gerd Hoffmann --- OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml index 1cf9bdf8b9c2..b3b6b02496ab 100644 --- a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml +++ b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml @@ -58,6 +58,13 @@ jobs: Build.Target: "DEBUG" Run.Flags: $(run_flags) Run: $(should_run) + OVMF_X64_CRYPTO_DRIVER: + Build.File: "$(package)/PlatformCI/PlatformBuild.py" + Build.Arch: "X64" + Build.Flags: "BLD_*_USE_CRYPTO_DRIVER=1" + Build.Target: "DEBUG" + Run.Flags: $(run_flags) + Run: $(should_run) OVMF_X64_RELEASE: Build.File: "$(package)/PlatformCI/PlatformBuild.py" Build.Arch: "X64" -- 2.39.1