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 1C62045CA0; Thu, 7 Nov 2024 14:15:17 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E26284060A; Thu, 7 Nov 2024 14:15:16 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id BCAA840280 for ; Thu, 7 Nov 2024 14:15:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1730985315; 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=CeHzWNbNWXGUcorkWCtpwIOFlchj/W3GHs9TYHHxSRk=; b=AbFOS5d52QXB4O3has7/6UEyqaB0pigf9q+IHB3NjAhQzZVpCxodBPE6JnuXrr9g9nmbgE GA7PeleiNAdTC9UOUynq6vTqar1aYz4Gd4qM472GU4RPAPGUCbIfDM99DTfMNTOscpudYG qbTPVkTewoCkTDw00PR/xu6vKLwXip4= Received: from mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-634-0DPvAGcNN0ejs7pauiGhdA-1; Thu, 07 Nov 2024 08:15:12 -0500 X-MC-Unique: 0DPvAGcNN0ejs7pauiGhdA-1 X-Mimecast-MFC-AGG-ID: 0DPvAGcNN0ejs7pauiGhdA Received: from mx-prod-int-03.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-03.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.12]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 4B39318F6C28; Thu, 7 Nov 2024 13:15:11 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.57]) by mx-prod-int-03.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id EA7AA195E481; Thu, 7 Nov 2024 13:15:09 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Aaron Conole , Michael Santana Subject: [PATCH] ci: remove workaround for ASan in Ubuntu GHA images Date: Thu, 7 Nov 2024 14:15:06 +0100 Message-ID: <20241107131506.2924839-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.0 on 10.30.177.12 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: H1el6gx6FiLdcBNWP91RhMT6_Zcf5oGUc9TGAg4WvC0_1730985311 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 This workaround is directly applied inside Ubuntu GHA images themselves. Link: https://github.com/actions/runner-images/commit/9485052d98ba055be3355565e23630de8f8c4ef8 Signed-off-by: David Marchand --- .github/workflows/build.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d3affbaa..224fa80dcd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -139,13 +139,6 @@ jobs: .ci/linux-setup.sh # Workaround on $HOME permissions as EAL checks them for plugin loading chmod o-w $HOME - - name: Reduce ASLR entropy - if: env.ASAN == 'true' - # ASan in llvm 14 provided in ubuntu-22.04 is incompatible with - # high-entropy ASLR configured in much newer kernels that GitHub - # runners are using leading to random crashes: - # https://github.com/actions/runner-images/issues/9491 - run: sudo sysctl -w vm.mmap_rnd_bits=28 - name: Build and test run: .ci/linux-build.sh - name: Upload logs on failure -- 2.47.0