mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-12 16:51:11 -04:00
29 lines
389 B
YAML
29 lines
389 B
YAML
language: ruby
|
|
|
|
os:
|
|
- linux
|
|
|
|
rvm:
|
|
- "2.3"
|
|
- "2.4"
|
|
- "2.6"
|
|
|
|
before_install:
|
|
- sudo apt-get install --assume-yes --quiet gcc-multilib
|
|
|
|
install:
|
|
- bundle install
|
|
- gem install rspec
|
|
- gem install rubocop -v 0.57.2
|
|
|
|
script:
|
|
- cd test && rake ci
|
|
- cd ..
|
|
- cd examples && cd make_example
|
|
- make clean
|
|
- make setup
|
|
- make test
|
|
- cd ..
|
|
- cd temp_sensor
|
|
- rake ci
|