Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nMFIr-0000EF-4n for pgsql-hackers@arkaria.postgresql.org; Mon, 21 Feb 2022 20:29:01 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1nMFIo-0001Es-W2 for pgsql-hackers@arkaria.postgresql.org; Mon, 21 Feb 2022 20:28:58 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nMFIo-0001Ed-Ml for pgsql-hackers@lists.postgresql.org; Mon, 21 Feb 2022 20:28:58 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by makus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nMFIi-0007EJ-2A; Mon, 21 Feb 2022 20:28:57 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 21LKSZ9Q581624; Mon, 21 Feb 2022 15:28:35 -0500 From: Tom Lane To: Mark Wong cc: Andres Freund , Peter Eisentraut , pgsql-hackers@postgresql.org, pgbf@twiska.com, heikki.linnakangas@iki.fi Subject: Re: Time to drop plpython2? In-reply-to: References: <20220215060131.vccqql2xelbujgtu@alap3.anarazel.de> <20220215214016.theaavgrleb72s5l@alap3.anarazel.de> <20220216195850.2ca4wnivsl3vbsib@alap3.anarazel.de> <20220217065208.2plo6mmx3ssu5fjd@alap3.anarazel.de> <20220217071446.tss2c3ozqpkl22iv@alap3.anarazel.de> <20220217180855.zdupcbamom6z5rxq@alap3.anarazel.de> <20220218224104.pv6caojcj2caixa6@alap3.anarazel.de> <20220219162229.hzrcea24hev4uj3u@alap3.anarazel.de> Comments: In-reply-to Mark Wong message dated "Mon, 21 Feb 2022 09:49:32 -0800" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <581622.1645475315.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Mon, 21 Feb 2022 15:28:35 -0500 Message-ID: <581623.1645475315@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Mark Wong writes: > On Sat, Feb 19, 2022 at 08:22:29AM -0800, Andres Freund wrote: >> Unfortunately it looks like it wasn't quite enough. All, or nearly all,= your >> animals that ran since still seem to be failing in the same spot... > Oops, made another pass for python3 dev libraries. You might need to do one more thing, which is manually blow away the cache files under $BUILDFARM/accache. For example, on demoiselle everything looks fine in HEAD, but the back branches are failing like this: checking for python... (cached) /usr/bin/python ./configure: line 10334: /usr/bin/python: No such file or directory configure: using python = ./configure: line 10342: test: : integer expression expected checking for Python sysconfig module... no configure: error: sysconfig module not found Very recent versions of the buildfarm script will discard accache automatically after a configure or make failure, but I think the REL_11 you're running here doesn't have that defense. It'll only flush accache after a change in the configure script in git. regards, tom lane