homebrew-core/Formula/cromwell.rb

73 lines
1.9 KiB
Ruby

class Cromwell < Formula
desc "Workflow Execution Engine using Workflow Description Language"
homepage "https://github.com/broadinstitute/cromwell"
url "https://github.com/broadinstitute/cromwell/releases/download/52//cromwell-52.jar"
sha256 "4b3195420d59d7ea129c3d690c9a1cc323403d9c85965ed7c2a37144af13ffa1"
license "BSD-3-Clause"
head do
url "https://github.com/broadinstitute/cromwell.git"
depends_on "sbt" => :build
end
bottle :unneeded
depends_on "openjdk"
resource "womtool" do
url "https://github.com/broadinstitute/cromwell/releases/download/52//womtool-52.jar"
sha256 "67331af5a4850c5c04e521682c6618c93c475c041f254121849ddb4cffde5c16"
end
def install
if build.head?
system "sbt", "assembly"
libexec.install Dir["server/target/scala-*/cromwell-*.jar"][0] => "cromwell.jar"
libexec.install Dir["womtool/target/scala-*/womtool-*.jar"][0] => "womtool.jar"
else
libexec.install "cromwell-#{version}.jar" => "cromwell.jar"
resource("womtool").stage do
libexec.install "womtool-#{version}.jar" => "womtool.jar"
end
end
(bin/"cromwell").write <<~EOS
#!/bin/bash
exec "#{Formula["openjdk"].opt_bin}/java" $JAVA_OPTS -jar "#{libexec}/cromwell.jar" "$@"
EOS
(bin/"womtool").write <<~EOS
#!/bin/bash
exec "#{Formula["openjdk"].opt_bin}/java" -jar "#{libexec}/womtool.jar" "$@"
EOS
end
test do
(testpath/"hello.wdl").write <<~EOS
task hello {
String name
command {
echo 'hello ${name}!'
}
output {
File response = stdout()
}
}
workflow test {
call hello
}
EOS
(testpath/"hello.json").write <<~EOS
{
"test.hello.name": "world"
}
EOS
result = shell_output("#{bin}/cromwell run --inputs hello.json hello.wdl")
assert_match "test.hello.response", result
end
end