mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
* Switch to trusty Precise is likely to die sometime after March 2018 - https://blog.travis-ci.com/2017-08-31-trusty-as-default-status * Remove Ruby 2.1 and 2.2 Ruby 2.1 is already EOL. 2.2 is EOL end March '18 * Need libicu52 on trusty
32 lines
358 B
YAML
32 lines
358 B
YAML
language: ruby
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libicu-dev
|
|
- libicu52
|
|
|
|
before_install: script/travis/before_install
|
|
|
|
script:
|
|
- bundle exec rake
|
|
- script/licensed verify
|
|
|
|
rvm:
|
|
- 2.3.3
|
|
- 2.4.0
|
|
- 2.5.0
|
|
|
|
notifications:
|
|
disabled: true
|
|
|
|
git:
|
|
submodules: false
|
|
depth: 3
|
|
|
|
cache: bundler
|
|
dist: trusty
|
|
|
|
bundler_args: --without debug
|