summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 100ff7a675b5fdde4a758b5dbda29d54704b5761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: rust
rust:
  - stable
matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true
cache:
  directories:
    - /home/travis/.cargo
before_cache:
  - rm -rf /home/travis/.cargo/registry
before_script:
  - psql -c "create user lemmy with password 'password' superuser;" -U postgres
  - psql -c 'create database lemmy with owner lemmy;' -U postgres
before_install:
  - cd server
script:
  - diesel migration run
  - cargo build
  - cargo test
addons:
  postgresql: "9.4"