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 68DCDA00C3; Fri, 13 May 2022 16:34:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 08FC140DF7; Fri, 13 May 2022 16:34:21 +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 0D89F40DDE for ; Fri, 13 May 2022 16:34:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1652452458; 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=l/lDVPg7MNKUR2aMsvKEmtsnNUE1U2T9BtM1oLr9ZDI=; b=GkLsoe6hxin6FgePrO5P4BLhWPZwEdlQiuzTu8NJ0tnTfFJ5imoBs/nQTfJ1G6/HE73/ms +Qf3DnmwBALZuG+uIUprZ4kRtTMRTYKLSQTbV/96LkrPisYCOxKlvZ7w+6KDDlPO32l4iv Bv6a94iOhBYdWHktIXr4KGz6uNmKg44= 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-223-ThzFqbDhO2CIQOvT5V4e1w-1; Fri, 13 May 2022 10:34:15 -0400 X-MC-Unique: ThzFqbDhO2CIQOvT5V4e1w-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 582D53800FC7; Fri, 13 May 2022 14:33:58 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.9.160]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 312AEC4C7A1; Fri, 13 May 2022 14:33:57 +0000 (UTC) From: Aaron Conole To: =?utf-8?Q?Stanis=C5=82aw?= Kardach Cc: dev , Frank Zhao , Sam Grove , Marcin Wojtas , upstream@semihalf.com, David Marchand , Michael Santana Subject: Re: [PATCH v3 8/8] ci: add RISCV64 cross compilation job References: <20220510150759.525434-1-kda@semihalf.com> <20220510154849.530872-1-kda@semihalf.com> <20220510154849.530872-9-kda@semihalf.com> Date: Fri, 13 May 2022 10:33:56 -0400 In-Reply-To: (=?utf-8?Q?=22Stanis=C5=82aw?= Kardach"'s message of "Thu, 12 May 2022 18:07:24 +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.8 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; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 Stanis=C5=82aw Kardach writes: > On Thu, 12 May 2022, 17:47 Aaron Conole, wrote: > > Stanislaw Kardach writes: > > > Checks cross-compilation using Ubuntu 20.04 x86. > > > > Signed-off-by: David Marchand > > Signed-off-by: Stanislaw Kardach > > --- > > .ci/linux-build.sh | 4 ++++ > > .github/workflows/build.yml | 11 ++++++++++- > > 2 files changed, 14 insertions(+), 1 deletion(-) > > Seems there is still a failure in this series - once that is resolved I > think this can go in. > > I suspect the failure is due to this series depending on 3 other patches = which I've marked with Depends-on in the > offending patch. Is CI utilizing those tags? If not, is there a way to re= launch it once dependencies are integrated? Ahh okay - yes 0day bot doesn't currently use that. It's planned for after the system upgrade (date on that is pending). > > diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh > > index 877243c9c8..aa5e9ec114 100755 > > --- a/.ci/linux-build.sh > > +++ b/.ci/linux-build.sh > > @@ -74,6 +74,10 @@ if [ "$PPC64LE" =3D "true" ]; then > > cross_file=3Dconfig/ppc/ppc64le-power8-linux-gcc-ubuntu > > fi > > =20 > > +if [ "$RISCV64" =3D "true" ]; then > > + cross_file=3Dconfig/riscv/riscv64_linux_gcc > > +fi > > + > > if [ -n "$cross_file" ]; then > > OPTS=3D"$OPTS --cross-file $cross_file" > > fi > > diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml > > index e2f94d786b..ca468da8fa 100644 > > --- a/.github/workflows/build.yml > > +++ b/.github/workflows/build.yml > > @@ -25,6 +25,7 @@ jobs: > > MINI: ${{ matrix.config.mini !=3D '' }} > > PPC64LE: ${{ matrix.config.cross =3D=3D 'ppc64le' }} > > REF_GIT_TAG: v22.03 > > + RISCV64: ${{ matrix.config.cross =3D=3D 'riscv64' }} > > RUN_TESTS: ${{ contains(matrix.config.checks, 'tests') }} > > =20 > > strategy: > > @@ -73,6 +74,10 @@ jobs: > > compiler: gcc > > library: shared > > cross: ppc64le > > + - os: ubuntu-20.04 > > + compiler: gcc > > + library: shared > > + cross: riscv64 > > =20 > > steps: > > - name: Checkout sources > > @@ -131,8 +136,12 @@ jobs: > > if: env.PPC64LE =3D=3D 'true' > > run: sudo apt install -y gcc-powerpc64le-linux-gnu libc6-dev-pp= c64el-cross > > pkg-config-powerpc-linux-gnu > > + - name: Install riscv64 cross compiling packages > > + if: env.RISCV64 =3D=3D 'true' > > + run: sudo apt install -y gcc-riscv64-linux-gnu libc6-dev-riscv6= 4-cross > > + pkg-config-riscv64-linux-gnu > > - name: Install test tools packages > > - if: env.AARCH64 !=3D 'true' || env.PPC64LE !=3D 'true' || env.R= UN_TESTS =3D=3D 'true' > > + if: env.AARCH64 !=3D 'true' || env.PPC64LE !=3D 'true' || env.R= ISCV64 !=3D 'true' || env.RUN_TESTS =3D=3D 'true' > > run: sudo apt install -y gdb > > - name: Install doc generation packages > > if: env.BUILD_DOCS =3D=3D 'true'