Files
soci/scripts/ci/build_oracle.sh
T
Vadim Zeitlin c36eb18dc3 Switch to using Oracle 11g Docker container
This should be simpler than installing it every time and seems to work
more reliably in local testing.
2021-03-19 02:49:54 +01:00

15 lines
358 B
Bash
Executable File

#!/bin/bash -e
# Builds SOCI Oracle 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} \
-DWITH_BOOST=OFF \
-DSOCI_ORACLE=ON \
-DSOCI_ORACLE_TEST_CONNSTR:STRING="service=localhost/XE user=travis password=travis" \
..
run_make