summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 8f57da19ebda1fb06cd253c09a2f4d93b7c41603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: rust
rust:
  - stable
  - beta
  - nightly
matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true
cache: cargo
services:
  - postgresql
before_script:
  - psql -c "create user rrr with password 'rrr' superuser;" -U postgres
  - psql -c 'create database rrr with owner rrr;' -U postgres
script:
  - cd server
  - cargo install diesel_cli --no-default-features --features postgres
  - cargo install 
  - diesel migration run
  - cargo build --all
  - cargo test --all