mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-22 03:55:53 +00:00
10 lines
259 B
Bash
Executable File
10 lines
259 B
Bash
Executable File
#!/bin/bash -e
|
|
# Sets up environment for SOCI backend PostgreSQL at travis-ci.org
|
|
#
|
|
# Mateusz Loskot <mateusz@loskot.net>, http://github.com/SOCI
|
|
#
|
|
source ${TRAVIS_BUILD_DIR}/bin/ci/common.sh
|
|
|
|
psql --version
|
|
psql -c 'create database soci_test;' -U postgres
|