lemmy/.travis.yml
2019-12-28 16:49:38 -05:00

27 lines
629 B
YAML
Vendored

language: rust
rust:
- stable
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache:
directories:
- /home/travis/.cargo
before_cache:
- rm -rf /home/travis/.cargo/registry
before_script:
- psql -c "create user lemmy with password 'password' superuser;" -U postgres
- psql -c 'create database lemmy with owner lemmy;' -U postgres
before_install:
- cd server
script:
- cargo build
- cargo install diesel_cli --no-default-features --features postgres
- diesel migration run
- cargo test
env:
- LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
addons:
postgresql: "9.4"