76 lines
2.2 KiB
Ruby
76 lines
2.2 KiB
Ruby
class Jenkins < Formula
|
|
desc "Extendable open source continuous integration server"
|
|
homepage "https://jenkins-ci.org"
|
|
url "http://mirrors.jenkins-ci.org/war/1.628/jenkins.war"
|
|
sha256 "e11227ad247ad3a938219cd2653adfb266ad54618d1839e63fd0e0e54852d6c7"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "4412e1f4ab53d3ae27c7bc5f24e8217232c135c331a6d5f5306c507438873a32" => :yosemite
|
|
sha256 "473f15bedef8341b78af9a3847893de6875a52003baf712a2355dfbab3a6a2c6" => :mavericks
|
|
sha256 "25c3deef278a5f7fc3d894edc8f23c7a63a06be79295124d2f2feb2e4c6a16cd" => :mountain_lion
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/jenkinsci/jenkins.git"
|
|
depends_on "maven" => :build
|
|
end
|
|
|
|
depends_on :java => "1.6+"
|
|
|
|
def install
|
|
if build.head?
|
|
system "mvn", "clean", "install", "-pl", "war", "-am", "-DskipTests"
|
|
else
|
|
system "jar", "xvf", "jenkins.war"
|
|
end
|
|
libexec.install Dir["**/jenkins.war", "**/jenkins-cli.jar"]
|
|
bin.write_jar_script libexec/"jenkins.war", "jenkins"
|
|
bin.write_jar_script libexec/"jenkins-cli.jar", "jenkins-cli"
|
|
end
|
|
|
|
plist_options :manual => "jenkins"
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/usr/bin/java</string>
|
|
<string>-Dmail.smtp.starttls.enable=true</string>
|
|
<string>-jar</string>
|
|
<string>#{opt_libexec}/jenkins.war</string>
|
|
<string>--httpListenAddress=127.0.0.1</string>
|
|
<string>--httpPort=8080</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Note: When using launchctl the port will be 8080.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
ENV["JENKINS_HOME"] = testpath
|
|
pid = fork do
|
|
exec "#{bin}/jenkins"
|
|
end
|
|
sleep 60
|
|
|
|
begin
|
|
assert_match /"mode":"NORMAL"/, shell_output("curl localhost:8080/api/json")
|
|
ensure
|
|
Process.kill("SIGINT", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|