lemmy/.travis.yml

23 lines
529 B
YAML
Raw Normal View History

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