lemmy/.travis.yml

23 lines
529 B
YAML
Raw Normal View History

2019-04-06 14:54:45 +00:00
language: rust
rust:
- stable
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
2019-04-06 15:27:35 +00: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 15:40:32 +00:00
before_install:
2019-04-06 14:57:24 +00:00
- cd server
2019-04-06 15:40:32 +00:00
script:
2019-04-06 17:49:27 +00:00
- cargo install --force diesel_cli --no-default-features --features postgres
2019-04-06 17:36:16 +00:00
- diesel migration run
2019-04-06 15:32:34 +00:00
- cargo build --all
- cargo test --all
2019-04-06 16:03:55 +00:00
env:
2019-04-06 16:46:31 +00:00
- DATABASE_URL=postgres://rrr:rrr@localhost/rrr
2019-04-06 16:25:18 +00:00
addons:
2019-04-06 17:01:02 +00:00
postgresql: "9.4"