2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-01-28 07:22:26 +00:00
Files
mysql/tools/scripts/build_unix_local.sh
Anarthal (Rubén Pérez) 0e5f42aea9 Migrated Linux CIs to use containers from a separate repo (#491)
New repository: https://github.com/anarthal/cpp-ci-containers
Rationale: adding/modifying containers is easier. Containers can be
shared between libraries.
2025-10-06 16:51:39 +02:00

72 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
#
# Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
set -e
repo_base=$(realpath $(dirname $(realpath $0))/../..)
BK=cmake
IMAGE=build-gcc13
IMAGE_VERSION=1
CONTAINER=builder-$IMAGE
FULL_IMAGE=ghcr.io/anarthal/cpp-ci-containers/$IMAGE:$IMAGE_VERSION
DB=mysql-9_4_0
DB_VERSION=1
docker start $DB || docker run -d \
--name $DB \
-v /var/run/mysqld:/var/run/mysqld \
-p 3306:3306 \
ghcr.io/anarthal/cpp-ci-containers/$DB:$DB_VERSION
docker start $CONTAINER || docker run -dit \
--name $CONTAINER \
-v "$repo_base:/opt/boost-mysql" \
-v /var/run/mysqld:/var/run/mysqld \
$FULL_IMAGE
docker network connect my-net $DB || echo "DB already connected"
docker network connect my-net $CONTAINER || echo "Network already connected"
# Command line
db_args="--server-host=$DB"
case $BK in
b2) cmd="$db_args
--toolset=clang
--cxxstd=11
--variant=release
--stdlib=native
--address-model=64
--separate-compilation=1
--use-ts-executor=0
--address-sanitizer=0
--undefined-sanitizer=0
--coverage=0
--valgrind=0"
;;
cmake) cmd="$db_args
--cmake-build-type=Debug
--build-shared-libs=1
--cxxstd=11
--install-test=0
"
;;
fuzz) cmd="$db_args" ;;
bench) cmd="$db_args
--protocol-iters=10
--connection-pool-iters=0
"
;;
*) cmd="" ;;
esac
# Run
docker exec $CONTAINER python /opt/boost-mysql/tools/ci/main.py --source-dir=/opt/boost-mysql $BK $cmd