Skip to content

Commit

Permalink
switch to ruby gem on GitHub and attempt to troubleshoot CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ianfixes committed Mar 7, 2018
1 parent 9874c9b commit 1aa9e5d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ language: ruby
script:
- bundle install
- bundle exec arduino_ci_remote.rb
notifications:
email:
on_success: change
on_failure: change
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
source 'https://rubygems.org'
gem 'arduino_ci', '~> 0.1.5'
gem 'arduino_ci', git: 'https://github.com/ifreecarve/arduino_ci.git', branch: '2018-03-05_ci_fixes'
12 changes: 9 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
GEM
remote: https://rubygems.org/
GIT
remote: https://github.com/ifreecarve/arduino_ci.git
revision: 1c599478717fd054527c141c14f76e3b50d8d517
branch: 2018-03-05_ci_fixes
specs:
arduino_ci (0.1.5)
os (~> 1.0)

GEM
remote: https://rubygems.org/
specs:
os (1.0.0)

PLATFORMS
ruby

DEPENDENCIES
arduino_ci (~> 0.1.5)
arduino_ci!

BUNDLED WITH
1.16.0
3 changes: 2 additions & 1 deletion includes/platform/FONAPlatStd.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@

#if (ARDUINO >= 100)
#include "Arduino.h"
#if !defined(__SAM3X8E__) && !defined(ARDUINO_ARCH_SAMD) // Arduino Due doesn't support #include <SoftwareSerial.h>
#if !defined(__SAM3X8E__) && !defined(ARDUINO_ARCH_SAMD) // Arduino Due doesn't support
#include <SoftwareSerial.h>
#endif
#else
#include "WProgram.h"
Expand Down

0 comments on commit 1aa9e5d

Please sign in to comment.