You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/.travis.yml

26 lines
566 B
YAML

language: rust
rust:
- stable
matrix:
allow_failures:
- rust: nightly
fast_finish: true
before_cache:
- cd server
cache: cargo
before_script:
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres
before_install:
- cd server
script:
- cargo install diesel_cli --no-default-features --features postgres
- cargo build
- diesel migration run
- cargo build --all
- cargo test --all
env:
- DATABASE_URL=postgres://rrr:rrr@localhost/rrr
addons:
postgresql: "11.2"