mirror of
https://github.com/SOCI/soci.git
synced 2026-01-06 05:00:33 -06:00
Try using CodeQL with SOCI. As a side effect, also add "all" pseudo-backend for building everything.
14 lines
302 B
Bash
14 lines
302 B
Bash
#!/bin/bash -e
|
|
# Builds SOCI with all backends.
|
|
#
|
|
# Copyright (c) 2021 Vadim Zeitlin <vz-soci@zeitlins.org>
|
|
#
|
|
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
|
|
|
|
# We don't use the default options here, as we don't want to turn off all the
|
|
# backends.
|
|
cmake ${SOCI_COMMON_CMAKE_OPTIONS} \
|
|
..
|
|
|
|
run_make
|