18 lines
800 B
YAML
18 lines
800 B
YAML
language: ruby
|
|
rvm:
|
|
- "2.6.2"
|
|
|
|
before_install:
|
|
- "phantomjs --version"
|
|
- "export PATH=${PWD}/travis_phantomjs/phantomjs-2.1.1-linux-x86_64/bin:${PATH}"
|
|
- "phantomjs --version"
|
|
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf ${PWD}/travis_phantomjs; mkdir -p ${PWD}/travis_phantomjs; fi"
|
|
- "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://assets.membergetmember.co/software/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O ${PWD}/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2; fi"
|
|
- "if [ $(phantomjs --version) != '2.1.1' ]; then tar -xvf ${PWD}/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C ${PWD}/travis_phantomjs; fi"
|
|
- "phantomjs --version"
|
|
|
|
before_script: bundle exec rails db:test:prepare
|
|
cache: bundler
|
|
sudo: false
|
|
env: RAILSGOAT_MAINTAINER=true
|