summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 79a49a18ca3c3ba6aa6e8278c600c823b321bc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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:
  global:
  - DATABASE_URL=postgres://rrr:rrr@localhost/rrr
  - PGPORT=5433
addons:
  postgresql: "10"
  apt:
    packages:
    - postgresql-10
    - postgresql-client-10