Messing with travis 2.

This commit is contained in:
Dessalines 2019-11-19 15:58:38 -08:00
parent 73e5c38f19
commit 6c29570a89

8
.travis.yml vendored
View file

@ -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