mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-03-31 04:46:57 +00:00
fix: mariadb on newer gcc and newer cmake version (#1961)
* Fix newer gcc issues in mariadb * fix error with newer cmake versions * update mariadb to latest * fix macos and docker * fix: update Windows MSI package comments and align Connector/C++ version * Update cmake/FindMariaDB.cmake Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: only pass CMAKE_POLICY_VERSION_MINIMUM to ExternalProject when CMake >= 4.0 Agent-Logs-Url: https://github.com/DarkflameUniverse/DarkflameServer/sessions/a247f729-a0b1-4fb6-825e-d23045b1ee55 Co-authored-by: aronwk-aaron <26027722+aronwk-aaron@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -16,7 +16,9 @@ RUN --mount=type=cache,target=/app/build,id=build-cache \
|
||||
cd /app/build && \
|
||||
cmake .. && \
|
||||
make -j$(nproc --ignore 1) && \
|
||||
cp -r /app/build/* /tmp/persisted-build/
|
||||
cp -r /app/build/* /tmp/persisted-build/ && \
|
||||
mkdir -p /tmp/persisted-build/mariadbcpp && \
|
||||
cp /app/build/thirdparty/mariadb-connector-cpp/src/mariadb_connector_cpp-build/libmariadbcpp.so /tmp/persisted-build/mariadbcpp/
|
||||
|
||||
FROM debian:12 as runtime
|
||||
|
||||
|
||||
Reference in New Issue
Block a user