mirror of
https://github.com/boostorg/mysql.git
synced 2025-05-12 06:01:42 +00:00
Fully migrated Linux and Windows jobs to Drone Fixed time-zone related issue in integ tests Support for MSVC 14.1 Support for latest docca version Recover codecov support Test to verify cmake find_package for a b2-generated distribution Resilience against openssl not being found in Windows
32 lines
911 B
Bash
Executable File
32 lines
911 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2019-2022 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
|
|
|
|
IMAGE=build-docs
|
|
CONTAINER=builder-$IMAGE
|
|
FULL_IMAGE=ghcr.io/anarthal-containers/$IMAGE
|
|
|
|
docker start mysql
|
|
docker start $CONTAINER || docker run -dit \
|
|
--name $CONTAINER \
|
|
-v ~/workspace/mysql:/opt/boost-mysql \
|
|
-v /var/run/mysqld:/var/run/mysqld \
|
|
$FULL_IMAGE
|
|
docker network connect my-net $CONTAINER || echo "Network already connected"
|
|
docker exec $CONTAINER python /opt/boost-mysql/tools/ci.py --source-dir=/opt/boost-mysql --server-host=mysql \
|
|
--build-kind=docs \
|
|
--build-shared-libs=1 \
|
|
--valgrind=0 \
|
|
--coverage=0 \
|
|
--clean=0 \
|
|
--toolset=clang \
|
|
--cxxstd=20 \
|
|
--variant=debug \
|
|
--stdlib=native
|