Skip to content

Commit bb25c28

Browse files
committed
Merge branch 'master' of https://github.com/Arduino-CI/arduino_ci into wire
2 parents f2fd95a + f32ba70 commit bb25c28

File tree

92 files changed

+1751
-597
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1751
-597
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text eol=lf

.rubocop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ Layout/ExtraSpacing:
3131
Layout/EndOfLine:
3232
EnforcedStyle: lf
3333

34+
Layout/EndAlignment:
35+
EnforcedStyleAlignWith: start_of_line
36+
37+
Layout/CaseIndentation:
38+
EnforcedStyle: end
39+
3440
Metrics/LineLength:
3541
Description: Limit lines to 80 characters.
3642
StyleGuide: https://github.com/bbatsov/ruby-style-guide#80-character-limits

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,10 @@ script:
2626
- bundle exec rspec --backtrace
2727
- cd SampleProjects/TestSomething
2828
- bundle install
29-
- bundle exec arduino_ci_remote.rb
29+
- bundle exec arduino_ci.rb
30+
- cd ../NetworkLib
31+
- cd scripts
32+
- bash -x ./install.sh
33+
- cd ..
34+
- bundle install
35+
- bundle exec arduino_ci.rb

CHANGELOG.md

Lines changed: 22 additions & 4 deletions

README.md

Lines changed: 10 additions & 7 deletions

REFERENCE.md

Lines changed: 51 additions & 9 deletions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
depends=OnePointOhDummy,OnePointFiveDummy

SampleProjects/DependOnSomething/src/YesDeps.cpp

Whitespace-only changes.

SampleProjects/DependOnSomething/src/YesDeps.h

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <ArduinoUnitTests.h>
2+
3+
unittest(nothing)
4+
{
5+
}
6+
7+
unittest_main()

0 commit comments

Comments
 (0)