e1ecc7289f
* Bump base64 from 0.9.3 to 0.10.0 * Bump bcrypt from 0.2.0 to 0.2.1 * Bump canapi from 0.1.0 to 0.2.0 * Bump failure from 0.1.2 to 0.1.3 * Bump hyper from 0.11.27 to 0.12.11 * Bump hyper from 0.11.27 to 0.12.16 * Bump lazy_static from 1.1.0 to 1.2.0 * Bump multipart from 0.15.3 to 0.15.4 * Bump openssl from 0.10.12 to 0.10.15 * Bump pulldown-cmark from 0.1.2 to 0.2.0 * Bump reqwest from 0.9.2 to 0.9.5 * Bump rocket from 0.4.0-rc.1 to 0.4.0 * Bump rpassword from 2.0.0 to 2.1.0 * Bump ructe from 0.5.2 to 0.5.4 * Bump serde_derive from 1.0.79 to 1.0.80 * Bump serde from 1.0.79 to 1.0.80 * Bump serde_json from 1.0.32 to 1.0.33 * Bump tera from 0.11.17 to 0.11.20 * Bump url from 1.7.1 to 1.7.2 * Bump validator to from 0.7.2 to 0.8.0 * Bump validator_derive from 0.7.2 to 0.8.0 * Bump whatlang from 0.5.0 to 0.6.0 * Remove hyper from plume-common dependencies * Remove rpassword from Plume dependancies * Upgrade compiler to nightly-2018-12-06
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
language: rust
|
|
rust:
|
|
- nightly-2018-12-06
|
|
cache:
|
|
cargo: true
|
|
directories:
|
|
- kcov-master
|
|
sudo: true
|
|
dist: trusty
|
|
services: postgres
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
- cmake
|
|
- gcc
|
|
- binutils-dev
|
|
- zlib1g-dev
|
|
- libiberty-dev
|
|
stages:
|
|
- build
|
|
- test and coverage
|
|
jobs:
|
|
include:
|
|
- stage: build
|
|
name: "Build with postgresql"
|
|
env:
|
|
- MIGRATION_DIR=migrations/postgres FEATURES=postgres DATABASE_URL=postgres://postgres@localhost/plume
|
|
script: cargo build --no-default-features --features="${FEATURES}"
|
|
- stage: build
|
|
name: "Build with sqlite"
|
|
env:
|
|
- MIGRATION_DIR=migrations/sqlite FEATURES=sqlite DATABASE_URL=plume.sqlite3
|
|
script: cargo build --no-default-features --features="${FEATURES}"
|
|
- stage: test and coverage
|
|
name: "Test with potgresql backend"
|
|
env:
|
|
- MIGRATION_DIR=migrations/postgres FEATURES=postgres DATABASE_URL=postgres://postgres@localhost/plume_tests
|
|
- RUSTFLAGS='-C link-dead-code' RUST_TEST_THREADS=1
|
|
before_script: psql -c 'create database plume_tests;' -U postgres
|
|
script:
|
|
- |
|
|
cargo test --features "${FEATURES}" --no-default-features --all &&
|
|
./script/compute_coverage.sh
|
|
- stage: test and coverage
|
|
name: "Test with Sqlite backend"
|
|
env:
|
|
- MIGRATION_DIR=migrations/sqlite FEATURES=sqlite DATABASE_URL=plume.sqlite3
|
|
- RUSTFLAGS='-C link-dead-code' RUST_TEST_THREADS=1
|
|
script:
|
|
- |
|
|
cargo test --features "${FEATURES}" --no-default-features --all &&
|
|
./script/compute_coverage.sh
|