forked from collectiveidea/awesome_nested_set
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (37 loc) · 714 Bytes
/
.travis.yml
File metadata and controls
37 lines (37 loc) · 714 Bytes
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
32
33
34
35
36
37
language: ruby
script: bundle exec rspec spec
sudo: false
cache: bundler
env:
- DB=sqlite3
- DB=sqlite3mem
- DB=postgresql
- DB=mysql
rvm:
- 2.7.0-preview1
- 2.6.3
- 2.5.5
addons:
postgresql: 9.4
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
include:
- rvm: 2.6.3
gemfile: gemfiles/rails_5.2.gemfile
env: DB=mariadb
addons:
mariadb: '10.4'
before_install:
- sudo systemctl stop mysql
- sudo mysqld_safe --skip-grant-tables &
notifications:
webhooks:
urls:
- https://buildlight.collectiveidea.com/
on_start: always
services:
- mysql