Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Formula/m/mysql@8.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ class MysqlAT80 < Formula
# FIXME: Actual homepage fails audit due to Homebrew's user-agent
# homepage "https://dev.mysql.com/doc/refman/8.0/en/"
homepage "https://github.com/mysql/mysql-server"
url "https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.42.tar.gz"
sha256 "c2aa67c618edfa1bc379107fe819ca8e94cba5d85f156d1053b8fedc88cc5f8f"
url "https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.43.tar.gz"
sha256 "85fd5c3ac88884dc5ac4522ce54ad9c11a91f9396fecaa27152c757a3e6e936f"
license "GPL-2.0-only" => { with: "Universal-FOSS-exception-1.0" }

livecheck do
Expand Down Expand Up @@ -102,7 +102,10 @@ def install
system "cmake", "--install", "build"

cd prefix/"mysql-test" do
system "./mysql-test-run.pl", "status", "--vardir=#{buildpath}/mysql-test-vardir"
system "./mysql-test-run.pl", "check", "--vardir=#{buildpath}/mysql-test-vardir"
ensure
status_log_file = buildpath/"mysql-test-vardir/log/main.status/status.log"
logs.install status_log_file if status_log_file.exist?
end

# Remove the tests directory
Expand Down
Loading