Commit 959593b5 authored by Greg Williams's avatar Greg Williams
Browse files

Removed support for installing cppcheck from Travis config, since cppcheck has...

Removed support for installing cppcheck from Travis config, since cppcheck has been deprecated to lack of value
parent 100e4fec
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -7,6 +7,5 @@ compiler:
  - gcc
install:
  - bundle install
  - bundle exec ruby ./config/travis_install.rb
script:
  - make all

config/travis_install.rb

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
require 'rake'

if ENV['TRAVIS_OS_NAME'] =~ /osx/i
  sh "brew install cppcheck"
else
  sh "sudo apt-get update"
  sh "sudo apt-get install -y cppcheck"
end