Messing with travis 2.
This commit is contained in:
parent
9e025d9d4c
commit
1b739af87b
1 changed files with 6 additions and 2 deletions
8
.travis.yml
vendored
8
.travis.yml
vendored
|
@ -5,14 +5,18 @@ matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
cache: cargo
|
cache:
|
||||||
|
directories:
|
||||||
|
- /home/travis/.cargo
|
||||||
|
before_cache:
|
||||||
|
- rm -rf /home/travis/.cargo/registry
|
||||||
before_script:
|
before_script:
|
||||||
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
|
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
|
||||||
- psql -c 'create database rrr with owner rrr;' -U postgres
|
- psql -c 'create database rrr with owner rrr;' -U postgres
|
||||||
- cargo install --force diesel_cli --no-default-features --features postgres
|
|
||||||
before_install:
|
before_install:
|
||||||
- cd server
|
- cd server
|
||||||
script:
|
script:
|
||||||
|
- cargo install --force diesel_cli --no-default-features --features postgres
|
||||||
- diesel migration run
|
- diesel migration run
|
||||||
- cargo build
|
- cargo build
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
Reference in a new issue