Files
soci/scripts/ci/build_all.sh
Vadim Zeitlin b41c0bad46 Add simple CodeQL analysis workflow
Try using CodeQL with SOCI.

As a side effect, also add "all" pseudo-backend for building everything.
2021-07-10 11:51:17 +02:00

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