summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-11-19 15:58:38 -0800
committerDessalines <tyhou13@gmx.com>2019-11-19 15:58:38 -0800
commit6c29570a89b178ef00d13814a24d4b953f759553 (patch)
treef09e79305055fa9af066f1183d6bdae5fcd0c19c /.travis.yml
parent73e5c38f198d915a97b1e824ebe7c804e3ecc106 (diff)
Messing with travis 2.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 5dd835df..fba9292a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,14 +5,18 @@ matrix:
allow_failures:
- rust: nightly
fast_finish: true
-cache: cargo
+cache:
+ directories:
+ - /home/travis/.cargo
+before_cache:
+ - rm -rf /home/travis/.cargo/registry
before_script:
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres
- - cargo install --force diesel_cli --no-default-features --features postgres
before_install:
- cd server
script:
+ - cargo install --force diesel_cli --no-default-features --features postgres
- diesel migration run
- cargo build
- cargo test