valgrind: disable mpicc and make Linux only (#67341)

* valgrind: disable mpicc and make Linux only

* tests-linux.yaml: add valgrind
master
Daniel Nachun 2020-12-22 12:07:16 -08:00 committed by GitHub
parent 92f5e828d7
commit 74f4ad5605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 16 deletions

View File

@ -21,6 +21,7 @@ on:
- "Formula/libtirpc.rb"
- "Formula/linux-headers.rb"
- "Formula/strace.rb"
- "Formula/valgrind.rb"
- "Formula/wayland.rb"
- "Formula/wayland-protocols.rb"
jobs:

View File

@ -1,24 +1,15 @@
class Valgrind < Formula
desc "Dynamic analysis tools (memory, debug, profiling)"
homepage "https://www.valgrind.org/"
url "https://sourceware.org/pub/valgrind/valgrind-3.16.1.tar.bz2"
sha256 "c91f3a2f7b02db0f3bc99479861656154d241d2fdb265614ba918cc6720a33ca"
license "GPL-2.0"
stable do
url "https://sourceware.org/pub/valgrind/valgrind-3.16.1.tar.bz2"
sha256 "c91f3a2f7b02db0f3bc99479861656154d241d2fdb265614ba918cc6720a33ca"
depends_on maximum_macos: :high_sierra
end
livecheck do
url "https://sourceware.org/pub/valgrind/"
regex(/href=.*?valgrind[._-]v?(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 "7170a66beb19ccfd79d1559fe57c67fb4a6a7b6369775621f5073af6fea07ea8" => :high_sierra
end
head do
url "https://sourceware.org/git/valgrind.git"
@ -27,17 +18,16 @@ class Valgrind < Formula
depends_on "libtool" => :build
end
# Valgrind needs vcpreload_core-*-darwin.so to have execute permissions.
# See #2150 for more information.
skip_clean "lib/valgrind"
depends_on :linux
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--enable-only64bit
--build=amd64-darwin
--without-mpicc
]
system "./autogen.sh" if build.head?
system "./configure", *args
@ -46,6 +36,6 @@ class Valgrind < Formula
end
test do
system "#{bin}/valgrind", "ls", "-l"
assert_match "usage", shell_output("#{bin}/valgrind --help")
end
end