Files
soci/scripts/ci/build_sqlite3.sh
T
Vadim Zeitlin 0998eb587a Use default memory database for SOCI tests in the CI
There doesn't seem to be any reason to override the default and doing
this disables FK support which is enabled by default since 2a8abbe4
(Turn foreign keys on by default for SQLite tests, 2025-01-21).
2025-01-24 17:35:48 +01:00

13 lines
251 B
Bash
Executable File

#!/usr/bin/env bash
# Builds SOCI SQLite3 backend in CI builds
#
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
#
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
-DSOCI_SQLITE3=ON \
..
run_make