Try to take advantage of travis cache and build stages
This commit is contained in:
parent
8d5eaaec6a
commit
dca91945af
51
.travis.yml
51
.travis.yml
@ -1,7 +1,10 @@
|
|||||||
language: rust
|
language: rust
|
||||||
rust:
|
rust:
|
||||||
- nightly-2018-07-17
|
- nightly-2018-07-17
|
||||||
cache: cargo
|
cache:
|
||||||
|
cargo: true
|
||||||
|
directories:
|
||||||
|
- kcov-master
|
||||||
sudo: true
|
sudo: true
|
||||||
dist: trusty
|
dist: trusty
|
||||||
|
|
||||||
@ -16,32 +19,36 @@ addons:
|
|||||||
- binutils-dev
|
- binutils-dev
|
||||||
- zlib1g-dev
|
- zlib1g-dev
|
||||||
- libiberty-dev
|
- libiberty-dev
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- code coverage
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- stage: test and build
|
- stage: build
|
||||||
env:
|
name: "Build with postgresql"
|
||||||
- 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:
|
env:
|
||||||
- MIGRATION_DIR=migrations/postgres FEATURES=postgres DATABASE_URL=postgres://postgres@localhost/plume
|
- MIGRATION_DIR=migrations/postgres FEATURES=postgres DATABASE_URL=postgres://postgres@localhost/plume
|
||||||
script: cargo build --no-default-features --features="${FEATURES}"
|
script: cargo build --no-default-features --features="${FEATURES}"
|
||||||
- stage: test and build
|
- stage: build
|
||||||
|
name: "Build with sqlite"
|
||||||
env:
|
env:
|
||||||
- MIGRATION_DIR=migrations/sqlite FEATURES=sqlite DATABASE_URL=plume.sqlite3
|
- MIGRATION_DIR=migrations/sqlite FEATURES=sqlite DATABASE_URL=plume.sqlite3
|
||||||
script: cargo build --no-default-features --features="${FEATURES}"
|
script: cargo build --no-default-features --features="${FEATURES}"
|
||||||
|
- stage: code coverage
|
||||||
|
name: "Calculate code coverage"
|
||||||
|
env:
|
||||||
|
- RUSTFLAGS='-C link-dead-code'
|
||||||
|
script:
|
||||||
|
- |
|
||||||
|
cargo test --features sqlite --no-default-features --all && (
|
||||||
|
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
|
||||||
|
tar xzf master.tar.gz &&
|
||||||
|
mkdir -p kcov-master/build &&
|
||||||
|
cd kcov-master/build &&
|
||||||
|
cmake .. &&
|
||||||
|
make &&
|
||||||
|
sudo make install &&
|
||||||
|
cd ../.. &&
|
||||||
|
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" || true )
|
||||||
|
Loading…
Reference in New Issue
Block a user