mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
6b2d9d4221
First step for testing `plume-models`. I only added one test for the moment, but we should add more in future PRs.
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
language: rust
|
|
rust:
|
|
- nightly-2018-07-17
|
|
cache: cargo
|
|
sudo: true
|
|
dist: trusty
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
- cmake
|
|
- gcc
|
|
- binutils-dev
|
|
- zlib1g-dev
|
|
- libiberty-dev
|
|
jobs:
|
|
include:
|
|
- stage: test and build
|
|
env:
|
|
- RUSTFLAGS='-C link-dead-code'
|
|
script: cargo test --features sqlite --no-default-features --all
|
|
after_success:
|
|
- |
|
|
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
|
|
tar xzf master.tar.gz &&
|
|
cd kcov-master &&
|
|
mkdir build &&
|
|
cd build &&
|
|
cmake .. &&
|
|
make &&
|
|
sudo make install &&
|
|
cd ../.. &&
|
|
rm -rf kcov-master &&
|
|
for crate in plume plume_common plume_models plume_api plm lib; do for file in target/debug/$crate-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done; done &&
|
|
bash <(curl -s https://codecov.io/bash) &&
|
|
echo "Uploaded code coverage"
|
|
- stage: test and build
|
|
env:
|
|
- MIGRATION_DIR=migrations/postgres FEATURES=postgres DATABASE_URL=postgres://postgres@localhost/plume
|
|
script: cargo build --no-default-features --features="${FEATURES}"
|
|
- stage: test and build
|
|
env:
|
|
- MIGRATION_DIR=migrations/sqlite FEATURES=sqlite DATABASE_URL=plume.sqlite3
|
|
script: cargo build --no-default-features --features="${FEATURES}"
|