File tree 3 files changed +17
-1
lines changed
SampleProjects/TestSomething
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
11
11
- ` --min-free-space=N ` command-line argument to fail if free space is below requred value
12
12
13
13
### Changed
14
+ - Fix copy/paste error to allow additional warnings for a platform
14
15
- Properly report compile errors in GitHub Actions (#296 )
15
16
- Put build artifacts in a separate directory to reduce clutter.
16
17
- Change 266 files from CRLF to LF.
Original file line number Diff line number Diff line change
1
+ platforms :
2
+ uno :
3
+ board : arduino:avr:uno
4
+ package : arduino:avr
5
+ gcc :
6
+ features :
7
+ defines :
8
+ - __AVR__
9
+ - __AVR_ATmega328P__
10
+ - ARDUINO_ARCH_AVR
11
+ - ARDUINO_AVR_UNO
12
+ warnings :
13
+ - no-unknown-attributes
14
+ flags :
15
+
1
16
unittest :
2
17
platforms :
3
18
- uno
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ def feature_args(ci_gcc_config)
443
443
def warning_args ( ci_gcc_config )
444
444
return [ ] if ci_gcc_config [ :warnings ] . nil?
445
445
446
- ci_gcc_config [ :features ] . map { |w | "-W#{ w } " }
446
+ ci_gcc_config [ :warnings ] . map { |w | "-W#{ w } " }
447
447
end
448
448
449
449
# GCC command line arguments for defines (e.g. -Dhave_something)
You can’t perform that action at this time.
0 commit comments