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 2A1C9A00C2 for ; Wed, 23 Nov 2022 19:05:00 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2672B42DB0; Wed, 23 Nov 2022 19:05:00 +0100 (CET) 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 21A5642DAE for ; Wed, 23 Nov 2022 19:04:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669226697; 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=nZjuLZBNgzJWQhEvND2IxoiVpJHgzChmism8+YuFRNk=; b=KEXR/yXcz9pO4ul+U46VDVyo+rVi+1IUcuicjmqKpN1LmVp8vGwRtv+3M4cNy1e4337sQc AjIl61F/iyAvcdXFYitou8/C041sENiMDqHUgQpfIMdM1Hm1PcYVxlqoslHzfWhO1VSocX 1X1roExm6R2l1czxB3CvFObAhIoX3/g= 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-351-aXY5frdUPDCmX_8koq9Hjg-1; Wed, 23 Nov 2022 13:04:56 -0500 X-MC-Unique: aXY5frdUPDCmX_8koq9Hjg-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 14702101A56C for ; Wed, 23 Nov 2022 18:04:56 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id 54AB7492B07; Wed, 23 Nov 2022 18:04:55 +0000 (UTC) From: Kevin Traynor To: David Marchand Cc: dpdk stable Subject: patch 'ci: update to new API for step outputs in GHA' has been queued to stable release 21.11.3 Date: Wed, 23 Nov 2022 18:03:40 +0000 Message-Id: <20221123180413.733554-27-ktraynor@redhat.com> In-Reply-To: <20221123180413.733554-1-ktraynor@redhat.com> References: <20221123180413.733554-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.3 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/28/22. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/fd7eb800f4f3dce7ec9c092c477810d9276251c1 Thanks. Kevin --- >From fd7eb800f4f3dce7ec9c092c477810d9276251c1 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 12 Oct 2022 18:29:42 +0200 Subject: [PATCH] ci: update to new API for step outputs in GHA [ upstream commit 1e249e0b47456b164a3139cdc85dc0ea20cbfeff ] GitHub actions deprecated use of set-output [1], replaced with GITHUB_OUTPUT. 1: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: David Marchand --- .github/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a715a7d455..21414e9c17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,10 +78,7 @@ jobs: id: get_ref_keys run: | - echo -n '::set-output name=ccache::' - echo 'ccache-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-'$(date -u +%Y-w%W) - echo -n '::set-output name=libabigail::' - echo 'libabigail-${{ matrix.config.os }}' - echo -n '::set-output name=abi::' - echo 'abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.LIBABIGAIL_VERSION }}-${{ env.REF_GIT_TAG }}' + echo 'ccache=ccache-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-'$(date -u +%Y-w%W) >> $GITHUB_OUTPUT + echo 'libabigail=libabigail-${{ matrix.config.os }}' >> $GITHUB_OUTPUT + echo 'abi=abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.LIBABIGAIL_VERSION }}-${{ env.REF_GIT_TAG }}' >> $GITHUB_OUTPUT - name: Retrieve ccache cache uses: actions/cache@v3 -- 2.38.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-11-23 09:55:57.736894718 +0000 +++ 0027-ci-update-to-new-API-for-step-outputs-in-GHA.patch 2022-11-23 09:55:57.067149302 +0000 @@ -1 +1 @@ -From 1e249e0b47456b164a3139cdc85dc0ea20cbfeff Mon Sep 17 00:00:00 2001 +From fd7eb800f4f3dce7ec9c092c477810d9276251c1 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 1e249e0b47456b164a3139cdc85dc0ea20cbfeff ] + @@ -11,2 +12,0 @@ -Cc: stable@dpdk.org - @@ -15,2 +15,2 @@ - .github/workflows/build.yml | 21 +++++++-------------- - 1 file changed, 7 insertions(+), 14 deletions(-) + .github/workflows/build.yml | 9 +++------ + 1 file changed, 3 insertions(+), 6 deletions(-) @@ -19 +19 @@ -index e27a2642c8..82d83f4030 100644 +index a715a7d455..21414e9c17 100644 @@ -22 +22 @@ -@@ -67,10 +67,7 @@ jobs: +@@ -78,10 +78,7 @@ jobs: @@ -36,22 +35,0 @@ -@@ -158,6 +155,5 @@ jobs: - id: get_keys - run: | -- echo -n '::set-output name=image::' -- echo 'image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) -+ echo 'image=image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) >> $GITHUB_OUTPUT - - name: Retrieve image cache - id: image_cache -@@ -212,10 +208,7 @@ jobs: - id: get_keys - run: | -- echo -n '::set-output name=ccache::' -- echo 'ccache-${{ matrix.config.image }}-${{ matrix.config.compiler }}-'$(date -u +%Y-w%W) -- echo -n '::set-output name=image::' -- echo 'image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) -- echo -n '::set-output name=logs::' -- echo 'meson-logs-${{ join(matrix.config.*, '-') }}' | tr -d ':' -+ echo 'ccache=ccache-${{ matrix.config.image }}-${{ matrix.config.compiler }}-'$(date -u +%Y-w%W) >> $GITHUB_OUTPUT -+ echo 'image=image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) >> $GITHUB_OUTPUT -+ echo 'logs=meson-logs-${{ join(matrix.config.*, '-') }}' | tr -d ':' >> $GITHUB_OUTPUT - - name: Retrieve image cache - id: image_cache