Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use only osx builds in travis #18

Merged
merged 1 commit into from
Jan 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
use only osx builds in travis
  • Loading branch information
ivan.evgrafov committed Jan 29, 2018
commit 9f6517c4b3bccbf7b9a0f606beedd8054baada68
34 changes: 6 additions & 28 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,19 @@ notifications:
language: ruby
sudo: required
os:
- linux
- osx
rvm:
- ruby-2.0.0-p648
- ruby-2.0.0-p598
- ruby-2.2.4
- ruby-2.2.2
- ruby-2.3.0-preview2
matrix:
exclude:
- os: linux
rvm: ruby-2.0.0-p598
- os: linux
rvm: ruby-2.2.2
- os: osx
rvm: ruby-2.2.4
- os: osx
rvm: ruby-2.0.0-p648
- os: osx
rvm: ruby-2.3.0-preview2
include:
- rvm: jruby-head
env: JRUBY_OPTS="-Xcli.debug=true --debug"
- ruby-2.3.0
- ruby-2.5.0
addons:
code_climate:
repo_token: 60d9731d654527cb53aabc7db15bcde87d701ddb6b1cba8fc0da6aba16d00bb1
before_install:
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then sudo add-apt-repository "deb http://cz.archive.ubuntu.com/ubuntu vivid main universe" ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then sudo apt-get update -q ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then sudo rm -rf /etc/dpkg/dpkg.cfg.d/multiarch ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then sudo apt-get install gnuplot5 ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install pdflib-lite ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gnuplot --with-png --with-jpeg --with-cairo --with-svg ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ulimit -S -n 4096 ; fi
- brew update
- brew install pdflib-lite
- brew install gnuplot --with-png --with-jpeg --with-cairo --with-svg
- ulimit -S -n 4096
- gem update bundler
- bundle install
install:
Expand Down