mirror of
https://github.com/SOCI/soci.git
synced 2026-05-05 02:39:13 -05:00
c36eb18dc3
This should be simpler than installing it every time and seems to work more reliably in local testing.
15 lines
358 B
Bash
Executable File
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
|