Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MySQL 8.4.1 is released #1087

Merged
merged 7 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
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
18 changes: 10 additions & 8 deletions .github/build-mysql-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ esac
PREFIX=$RUNNER_TOOL_CACHE/mysql/$MYSQL_VERSION/$MYSQL_ARCH
export LDFLAGS=-Wl,-rpath,$PREFIX/lib

# install LLVM
brew install llvm@17
LLVM_PATH=$(brew --prefix llvm@17)
export PATH="$LLVM_PATH/bin:$PATH"
export LDFLAGS="$LDFLAGS -L$LLVM_PATH/lib"
export CPPFLAGS="$CPPFLAGS -I$LLVM_PATH/include"
export CC=$LLVM_PATH/bin/clang
export CXX=$LLVM_PATH/bin/clang++
if [[ "$MYSQL_VERSION" =~ ^[89][.] ]]; then # MySQL 8.0 or later
# install LLVM
brew install llvm@17
LLVM_PATH=$(brew --prefix llvm@17)
export PATH="$LLVM_PATH/bin:$PATH"
export LDFLAGS="$LDFLAGS -L$LLVM_PATH/lib"
export CPPFLAGS="$CPPFLAGS -I$LLVM_PATH/include"
export CC=$LLVM_PATH/bin/clang
export CXX=$LLVM_PATH/bin/clang++
fi

# detect the number of CPU Core
JOBS=$(sysctl -n hw.logicalcpu_max)
Expand Down
2 changes: 1 addition & 1 deletion versions/mysql.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
"9.0.0",
"8.4.0",
"8.4.1",
"8.3.0",
"8.2.0",
"8.1.0",
Expand Down
Loading