class JenkinsLts < Formula desc "Extendable open-source CI server" homepage "https://jenkins.io/index.html#stable" url "http://mirrors.jenkins.io/war-stable/2.176.1/jenkins.war" sha256 "8bbc6e2043e7bd102f751aca94b51652e1e792ec0a11377d52c9d9ed484f0e8c" bottle :unneeded depends_on :java => "1.8" def install system "jar", "xvf", "jenkins.war" libexec.install "jenkins.war", "WEB-INF/jenkins-cli.jar" bin.write_jar_script libexec/"jenkins.war", "jenkins-lts", :java_version => "1.8" bin.write_jar_script libexec/"jenkins-cli.jar", "jenkins-lts-cli", :java_version => "1.8" end def caveats; <<~EOS Note: When using launchctl the port will be 8080. EOS end plist_options :manual => "jenkins-lts" def plist; <<~EOS Label #{plist_name} ProgramArguments /usr/libexec/java_home -v 1.8 --exec java -Dmail.smtp.starttls.enable=true -jar #{opt_libexec}/jenkins.war --httpListenAddress=127.0.0.1 --httpPort=8080 RunAtLoad EOS end test do ENV["JENKINS_HOME"] = testpath ENV.append "_JAVA_OPTIONS", "-Djava.io.tmpdir=#{testpath}" pid = fork do exec "#{bin}/jenkins-lts" end sleep 60 begin output = shell_output("curl localhost:8080/") assert_match(/Welcome to Jenkins!|Unlock Jenkins|Authentication required/, output) ensure Process.kill("SIGINT", pid) Process.wait(pid) end end end