From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5C20AA050C; Tue, 26 Apr 2022 17:08:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4704F42805; Tue, 26 Apr 2022 17:08:01 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 7E33342803 for ; Tue, 26 Apr 2022 17:07:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1650985679; 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: in-reply-to:in-reply-to:references:references; bh=psJzHmdWXjNEyfolUI7uF+Fi9+uNaz6isNkHLsdoTVE=; b=DENNmoif61bP451qgMxv6H0mv+WKLbKOyoShCbEh+eT6xjpBmn1Gr5beQiC4+sAEi3Kcr9 P8LAsLMVurNzC7QM7uU2dVfbZ2eKACZ4JYvz8oqRmEhsp9LM7x/tbhedbJLIigZLGhb0BP 5zjPHbSnipmqvbI6gBQYa67hgg7DP7M= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-665-ZY_oahaqNoKO8UWdqZ7g5A-1; Tue, 26 Apr 2022 11:07:55 -0400 X-MC-Unique: ZY_oahaqNoKO8UWdqZ7g5A-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4BAE51801387; Tue, 26 Apr 2022 15:07:55 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.17.196]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C896154EB05; Tue, 26 Apr 2022 15:07:54 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, Michael Santana Subject: Re: [PATCH 2/2] ci: add mingw cross compilation in GHA References: <20220426071828.1810-1-david.marchand@redhat.com> <20220426071828.1810-2-david.marchand@redhat.com> Date: Tue, 26 Apr 2022 11:07:53 -0400 In-Reply-To: <20220426071828.1810-2-david.marchand@redhat.com> (David Marchand's message of "Tue, 26 Apr 2022 09:18:28 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org David Marchand writes: > Add mingw cross compilation in our public CI so that users with their > own github repository have a first level of checks for Windows compilation > before submitting to the mailing list. > This does not replace our better checks in other entities of the CI. > > Only the helloworld example is compiled (same as what is tested in > test-meson-builds.sh). > > Note: the mingw cross compilation toolchain (version 5.0) in Ubuntu > 18.04 was broken (missing a ENOMSG definition). > > Signed-off-by: David Marchand > --- Acked-by: Aaron Conole