drogon/.travis.yml

52 lines
887 B
YAML
Raw Normal View History

matrix:
include:
- os: linux
dist: xenial
- os: osx
osx_image: xcode11
2019-03-26 07:25:22 +00:00
sudo: required
2019-03-26 07:25:22 +00:00
language: cpp
addons:
apt:
sources:
- xenial
- sourceline: 'deb http://archive.ubuntu.com/ubuntu xenial main'
- sourceline: 'ppa:mhier/libboost-latest'
packages:
2019-03-26 07:25:22 +00:00
- gcc
- g++
- libjsoncpp-dev
- uuid-dev
- zlib1g-dev
2018-11-18 10:20:11 +00:00
- postgresql-server-dev-10
- openssl
- libssl-dev
2018-12-30 02:30:10 +00:00
- libsqlite3-dev
- build-essential
- cmake
- boost1.67
homebrew:
packages:
2019-03-26 07:25:22 +00:00
- jsoncpp
- ossp-uuid
- openssl
- cmake
- libtool
- lz4
2018-12-05 01:50:36 +00:00
- mariadb
2018-12-30 02:30:10 +00:00
- sqlite3
before_script:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew services restart postgresql;
sleep 2;
psql -c 'create user postgres superuser;' postgres;
fi
services:
- postgresql
script:
- ./build.sh -t && ./test.sh -t