2019-04-23 21:07:17 +03:00
|
|
|
dist: xenial
|
|
|
|
compiler: clang
|
2016-05-04 00:41:42 +03:00
|
|
|
language: ruby
|
2012-04-25 22:43:30 -05:00
|
|
|
rvm:
|
2018-06-21 17:55:51 +03:00
|
|
|
- 2.5
|
|
|
|
- 2.4
|
|
|
|
- rubinius-3
|
2015-07-05 19:06:49 +03:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-06-21 17:55:51 +03:00
|
|
|
- rvm: 2.5.1
|
2016-09-19 13:52:03 +03:00
|
|
|
os: osx
|
2018-06-21 17:55:51 +03:00
|
|
|
osx_image: xcode9.4.1
|
|
|
|
- rvm: 2.5.1
|
2016-05-03 22:19:46 +03:00
|
|
|
os: osx
|
2018-06-21 17:55:51 +03:00
|
|
|
osx_image: xcode9.2
|
2015-07-05 19:06:49 +03:00
|
|
|
allow_failures:
|
2018-06-21 17:55:51 +03:00
|
|
|
- rvm: rubinius-3
|
2015-07-05 19:06:49 +03:00
|
|
|
fast_finish: true
|
2015-07-17 13:38:47 +03:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- clang
|
2019-04-17 16:00:32 +03:00
|
|
|
- pkg-config
|
2016-05-03 22:19:46 +03:00
|
|
|
bundler_args: --jobs=4 --retry=3
|
|
|
|
before_install:
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then gem update bundler; fi
|
2016-11-19 15:08:32 +02:00
|
|
|
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then gem update --system; fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$TRAVIS_RUBY_VERSION" == "system" ]; then sudo gem install bundler; fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$TRAVIS_RUBY_VERSION" != "system" ]; then gem update --system; fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$TRAVIS_RUBY_VERSION" != "system" ]; then gem update bundler; fi
|
2016-05-03 22:19:46 +03:00
|
|
|
script:
|
2016-05-12 19:41:16 +03:00
|
|
|
- git submodule update --init
|
2018-07-06 10:38:04 +03:00
|
|
|
- bundle exec rake spec binary --trace
|
2016-05-03 22:19:46 +03:00
|
|
|
deploy:
|
|
|
|
provider: releases
|
|
|
|
file: $(git ls-files -o pkg | head -1)
|
|
|
|
api_key:
|
|
|
|
secure: OMCBceg89uRnU+FIPAPbeOK2pISvV4Cz62r9iTRIGXQCOOXX8M40i77/3DmtkMtc9FEuNyAu1+CH886PL2WtZZPK4CmEU3HuqXz1a5VsCI+zcAZL1tevKvblXOVQ3MG+B/SZRC3rEzGwjk4027WtzCCGoGCLUu4TFJP05+/8XN4=
|
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
|
|
|
tags: true
|
2018-06-23 00:04:34 +03:00
|
|
|
# condition: $TRAVIS_OS_NAME = osx
|
2016-05-12 16:34:45 +03:00
|
|
|
cache:
|
|
|
|
bundler: true
|
2016-05-03 22:19:46 +03:00
|
|
|
notifications:
|
|
|
|
recipients:
|
|
|
|
- cowboyd@thefrontside.net
|
|
|
|
- bordjukov@gmail.com
|