blob: 094ec6fe5151787c32b979fdf38c402a3fe5e772 (
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
|
language: ruby
cache: bundler
rvm:
- 2.5
gemfiles:
- Gemfile
- Gemfile.ci # rails 5
branches:
only:
- master
services:
- elasticsearch
- redis-server
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.0.deb && sudo dpkg -i --force-confnew elasticsearch-6.3.0.deb && sudo service elasticsearch restart
before_script:
- cp config/secrets.yml.dist config/secrets.yml
# Wait for Elasticsearch
- sleep 10
- bundle exec rake kkuleomi:index:init RAILS_ENV=test
|