lemmy/.travis.yml

23 lines
529 B
YAML
Raw Normal View History

2019-04-06 10:54:45 -04:00
language: rust
rust:
- stable
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
2019-04-06 11:27:35 -04:00
before_script:
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres
2019-04-06 11:40:32 -04:00
before_install:
2019-04-06 10:57:24 -04:00
- cd server
2019-04-06 11:40:32 -04:00
script:
2019-04-06 13:49:27 -04:00
- cargo install --force diesel_cli --no-default-features --features postgres
2019-04-06 13:36:16 -04:00
- diesel migration run
2019-04-06 11:32:34 -04:00
- cargo build --all
- cargo test --all
2019-04-06 12:03:55 -04:00
env:
2019-04-06 12:46:31 -04:00
- DATABASE_URL=postgres://rrr:rrr@localhost/rrr
2019-04-06 12:25:18 -04:00
addons:
2019-04-06 13:01:02 -04:00
postgresql: "9.4"