15 lines
304 B
YAML
15 lines
304 B
YAML
sudo: false
|
|
language: ruby
|
|
cache: bundler
|
|
rvm:
|
|
- 2.2
|
|
- ruby-head
|
|
- 2.1
|
|
script: bundle exec rake ci
|
|
before_script:
|
|
- ssh-keygen -f ~/.ssh/id_rsa -t rsa -N ''
|
|
- cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
|
|
- chmod 600 ~/.ssh/authorized_keys
|
|
- eval `ssh-agent -s`
|
|
- ssh-add ~/.ssh/id_rsa
|