From owner-dev-commits-ports-main@freebsd.org Thu Jun 17 19:24:52 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 90DD465B3CC; Thu, 17 Jun 2021 19:24:52 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G5X7S3WWgz3kH6; Thu, 17 Jun 2021 19:24:52 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 613951504F; Thu, 17 Jun 2021 19:24:52 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15HJOqWS068987; Thu, 17 Jun 2021 19:24:52 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15HJOqiT068986; Thu, 17 Jun 2021 19:24:52 GMT (envelope-from git) Date: Thu, 17 Jun 2021 19:24:52 GMT Message-Id: <202106171924.15HJOqiT068986@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: 6f21954c274b - main - math/highs: Add test target, remove tests from build MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6f21954c274bb4394b3f59879279497ddbb79747 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jun 2021 19:24:52 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=6f21954c274bb4394b3f59879279497ddbb79747 commit 6f21954c274bb4394b3f59879279497ddbb79747 Author: Yuri Victorovich AuthorDate: 2021-06-17 18:51:46 +0000 Commit: Yuri Victorovich CommitDate: 2021-06-17 19:24:48 +0000 math/highs: Add test target, remove tests from build i386 should be fixed now because the failure was during the test execitable build. --- math/highs/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/math/highs/Makefile b/math/highs/Makefile index a1902ae5df05..fb53a5be7990 100644 --- a/math/highs/Makefile +++ b/math/highs/Makefile @@ -10,18 +10,21 @@ COMMENT= Solver for large scale sparse linear programming (LP) problems LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_i386= undefined reference to fmax, see https://github.com/ERGO-Code/HiGHS/issues/505 - LIB_DEPENDS= libOsi.so:math/osi -USES= blaslapack cmake compiler:c++11-lang pkgconfig +USES= blaslapack cmake:testing compiler:c++11-lang pkgconfig USE_GITHUB= yes GH_ACCOUNT= ERGO-Code GH_PROJECT= HiGHS GH_TAGNAME= cfe064e +CMAKE_OFF= BUILD_TESTING + post-install: # see https://github.com/ERGO-Code/HiGHS/issues/502 ${RM} -r ${STAGEDIR}${PREFIX}/external +# tests fail to build on i386: undefined reference to fmax, see https://github.com/ERGO-Code/HiGHS/issues/505 +# 2 tests fail: https://github.com/ERGO-Code/HiGHS/issues/525 + .include