Commit 7709be9b authored by Greg Williams's avatar Greg Williams
Browse files

Added :verbose task to set verbosity of Ceedling to level 4-obnoxious, and...

Added :verbose task to set verbosity of Ceedling to level 4-obnoxious, and added to :ci task to track down include path issues on Travis CI / Linux
parent 8823db6c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -200,9 +200,14 @@ task :all => [
  'run'
]

task :verbose do
  Rake::Task[:verbosity].invoke(4) # Set verbosity to 4-obnoxious for debugging
end

desc "Run full CI build"
task :ci => [
  'clobber',
  'verbose',
  'all'
]