From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28392158086 for ; Wed, 1 Dec 2021 10:06:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B71D2BC001; Wed, 1 Dec 2021 10:06:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F88C2BC001 for ; Wed, 1 Dec 2021 10:06:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C837B342DC8 for ; Wed, 1 Dec 2021 10:05:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 414221E3 for ; Wed, 1 Dec 2021 10:05:57 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1638353039.ec624be3ead217db99e5496bd719fcf3f8a1115a.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/maturin/maturin-0.11.5-r1.ebuild dev-util/maturin/maturin-0.12.3-r1.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: ec624be3ead217db99e5496bd719fcf3f8a1115a X-VCS-Branch: master Date: Wed, 1 Dec 2021 10:05:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e1492dd3-f5ab-4f7b-bf06-1bd5457b4463 X-Archives-Hash: 823a36ed274253e1b6e8b096b47a126c commit: ec624be3ead217db99e5496bd719fcf3f8a1115a Author: Ionen Wolkens gentoo org> AuthorDate: Wed Dec 1 09:48:34 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Dec 1 10:03:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec624be3 dev-util/maturin: limit tests to 1 thread Tentatively closing #825242 to see if it the issue resurfaces, can't reproduce anymore (so far) with 1 thread and tests aren't overly long (building tests will still uses normal thread count). Will revisit if upstream finds a solution. Closes: https://bugs.gentoo.org/825242 Signed-off-by: Ionen Wolkens gentoo.org> dev-util/maturin/maturin-0.11.5-r1.ebuild | 3 ++- dev-util/maturin/maturin-0.12.3-r1.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-util/maturin/maturin-0.11.5-r1.ebuild b/dev-util/maturin/maturin-0.11.5-r1.ebuild index b2457d9b7798..fad51fc2c494 100644 --- a/dev-util/maturin/maturin-0.11.5-r1.ebuild +++ b/dev-util/maturin/maturin-0.11.5-r1.ebuild @@ -301,7 +301,8 @@ python_test() { local -x PIP_CONFIG_FILE=${T}/pip.conf local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1 - cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock + cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock \ + --test-threads 1 #825242 } python_install_all() { diff --git a/dev-util/maturin/maturin-0.12.3-r1.ebuild b/dev-util/maturin/maturin-0.12.3-r1.ebuild index bbced0e389c3..936b151e7a89 100644 --- a/dev-util/maturin/maturin-0.12.3-r1.ebuild +++ b/dev-util/maturin/maturin-0.12.3-r1.ebuild @@ -336,7 +336,8 @@ python_test() { local -x PIP_CONFIG_FILE=${T}/pip.conf local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1 - cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock + cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock \ + --test-threads 1 #825242 } python_install_all() {