Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run 'make check' during Normaliz build #230

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Formula/normaliz.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
class Normaliz < Formula

Check warning on line 1 in Formula/normaliz.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-latest)

`brew linkage --cached --test --strict macaulay2/tap/normaliz` failed on Linux!

Indirect dependencies with linkage: flint

Check warning on line 1 in Formula/normaliz.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-12)

`brew linkage --cached --test --strict macaulay2/tap/normaliz` failed on macOS Monterey (12)!

Indirect dependencies with linkage: flint mpfr

Check warning on line 1 in Formula/normaliz.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-13)

`brew linkage --cached --test --strict macaulay2/tap/normaliz` failed on macOS Ventura (13)!

Indirect dependencies with linkage: flint mpfr

Check warning on line 1 in Formula/normaliz.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

`brew linkage --cached --test --strict macaulay2/tap/normaliz` failed on macOS Sonoma (14) on Apple Silicon!

Indirect dependencies with linkage: flint mpfr
desc "Affine monoids, vector configurations, lattice polytopes, and rational cones"
homepage "https://www.normaliz.uni-osnabrueck.de/"
url "https://github.com/Normaliz/Normaliz/releases/download/v3.10.3/normaliz-3.10.3.tar.gz"
sha256 "0aeb58fbbca362ed759f338a85e74156ed411e2846cc395f52d23ae90022ec91"
license "GPL-3.0-only"
revision 1

bottle do
root_url "https://ghcr.io/v2/macaulay2/tap"
Expand All @@ -15,6 +16,7 @@

depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "diffutils" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build

Expand Down Expand Up @@ -54,6 +56,7 @@

system "autoreconf", "-vif"
system "./configure", *args
system "make", "check"
system "make", "install"
end

Expand Down
Loading