blob: 89191b010807dd46752879526cf23bb8df78f025 (
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
|
sudo: false
language: ruby
cache:
yarn: true
directories:
- node_modules
addons:
postgresql: '9.6'
chrome: stable
rvm:
- 2.6.5
install:
- nvm install node
- npm install -g yarn
- node -v
- yarn install
- sudo ./bin/setup_chrome
before_script:
- psql -c 'create database proof;' -U postgres
- ln -s /usr/lib/chromium-browser/chromedriver ~/bin/chromedriver
env:
- DATABASE_URL=postgres://postgres@localhost/proof
script:
- bin/cibuild
services:
- postgresql
|