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 72833A00C2 for ; Wed, 2 Nov 2022 14:26:22 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6C1FD40223; Wed, 2 Nov 2022 14:26:22 +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 CA60040041 for ; Wed, 2 Nov 2022 14:26:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1667395580; 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; bh=yJRFpOOoddqaEjKI8AeTXchk1wVtDreUBVOUZpn6ZXQ=; b=bnhlnJQtfLWtsZCXeF9Zjk7+p/Bl0g1UdEF9dxxYCei9arFwdNAfOzpfruaIOGzIIsS+kF nPvHeIAa9Z+LOSrzNn5oTPew/jvgtQKQGoCKJFfp0xoS1b3wxwkTaD9Yl/hLm4b5SRPNBQ zZpdrm5G2t7OqaSV3T8r9nNu3GEN1OQ= 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-261-A_qmjhFqN8KN0n3OTl14xg-1; Wed, 02 Nov 2022 09:26:19 -0400 X-MC-Unique: A_qmjhFqN8KN0n3OTl14xg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id F0B0B185A79C for ; Wed, 2 Nov 2022 13:26:18 +0000 (UTC) Received: from localhost.localdomain (ovpn-192-75.brq.redhat.com [10.40.192.75]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4E8DB2024CC0; Wed, 2 Nov 2022 13:26:18 +0000 (UTC) From: David Marchand To: stable@dpdk.org Cc: ktraynor@redhat.com Subject: [PATCH] ci: enable ABI check in GHA Date: Wed, 2 Nov 2022 14:26:06 +0100 Message-Id: <20221102132606.2154001-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 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 Enable ABI checks to avoid breakage on this LTS branch. Signed-off-by: David Marchand --- Tested in my DPDK fork GHA: https://github.com/david-marchand/dpdk/actions/runs/3377553129/jobs/5606622502#step:16:17794 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e9c4be6d0..6cf997d6ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: LIBABIGAIL_VERSION: libabigail-1.8 MINI: ${{ matrix.config.mini != '' }} PPC64LE: ${{ matrix.config.cross == 'ppc64le' }} - REF_GIT_TAG: none + REF_GIT_TAG: v21.11 RUN_TESTS: ${{ contains(matrix.config.checks, 'tests') }} strategy: @@ -40,7 +40,7 @@ jobs: - os: ubuntu-18.04 compiler: gcc library: shared - checks: doc+tests + checks: abi+doc+tests - os: ubuntu-18.04 compiler: clang library: static -- 2.37.3