mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-12 16:51:11 -04:00
30 lines
533 B
YAML
30 lines
533 B
YAML
language: ruby
|
|
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
rvm:
|
|
- "2.0.0"
|
|
- "2.2.2"
|
|
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then rvm install 2.1 && rvm use 2.1 && ruby -v; fi
|
|
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install --assume-yes --quiet gcc-multilib; fi
|
|
|
|
install:
|
|
- bundle install
|
|
- gem install rspec
|
|
- gem install rubocop
|
|
|
|
script:
|
|
- cd test && rake ci
|
|
- cd ..
|
|
- cd examples && cd make_example
|
|
- make clean
|
|
- make setup
|
|
- make test
|
|
- cd ..
|
|
- cd temp_sensor
|
|
- rake ci
|