homebrew-core/Formula/jenkins.rb

79 lines
2.2 KiB
Ruby

class Jenkins < Formula
desc "Extendable open source continuous integration server"
homepage "https://jenkins.io/"
url "http://mirrors.jenkins.io/war/2.255/jenkins.war"
sha256 "fde80b0f9c98e54ed5ed3d7bbb72e003043e014beb1739e8b81d4e1d5f788169"
license "MIT"
livecheck do
url :head
regex(/^jenkins[._-]v?(\d+(?:\.\d+)+)$/i)
end
head do
url "https://github.com/jenkinsci/jenkins.git"
depends_on "maven" => :build
end
bottle :unneeded
depends_on "openjdk@11"
def install
if build.head?
system "mvn", "clean", "install", "-pl", "war", "-am", "-DskipTests"
else
system "#{Formula["openjdk@11"].opt_bin}/jar", "xvf", "jenkins.war"
end
libexec.install Dir["**/jenkins.war", "**/cli-#{version}.jar"]
bin.write_jar_script libexec/"jenkins.war", "jenkins", java_version: "11"
bin.write_jar_script libexec/"cli-#{version}.jar", "jenkins-cli", java_version: "11"
end
def caveats
<<~EOS
Note: When using launchctl the port will be 8080.
EOS
end
plist_options manual: "jenkins"
def plist
<<~EOS
<?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>#{Formula["openjdk@11"].opt_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
test do
ENV["JENKINS_HOME"] = testpath
ENV.prepend "_JAVA_OPTIONS", "-Djava.io.tmpdir=#{testpath}"
port = free_port
fork do
exec "#{bin}/jenkins --httpPort=#{port}"
end
sleep 60
output = shell_output("curl localhost:#{port}/")
assert_match /Welcome to Jenkins!|Unlock Jenkins|Authentication required/, output
end
end