Skip to content

Commit

Permalink
[IRrecvDumpV2/3] Update PlatformIO envs for missing languages (#1661)
Browse files Browse the repository at this point in the history
* Force Russian to be built in the Continuous Integration.
* Add missing languages to IRrecvDumpV3.
  • Loading branch information
crankyoldgit authored Nov 2, 2021
1 parent 49bfe4c commit 0f3fa4d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 5 additions & 2 deletions examples/IRrecvDumpV2/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,15 @@ build_flags = -D_IR_LOCALE_=it-IT ; Italian
[env:pt-BR]
build_flags = -D_IR_LOCALE_=pt-BR ; Portuguese (Brazilian)

[env:zh-CN]
build_flags = -D_IR_LOCALE_=zh-CN ; Chinese (Simplified)
[env:ru-RU]
build_flags = -D_IR_LOCALE_=ru-RU ; Russian

[env:sv-SE]
build_flags = -D_IR_LOCALE_=sv-SE ; Swedish

[env:zh-CN]
build_flags = -D_IR_LOCALE_=zh-CN ; Chinese (Simplified)

; Build the library with all protocols disabled to flush out #if/#ifdef issues &
; any compiler warnings, by turning them into errors.
[env:shakedown_no_protocols]
Expand Down
9 changes: 9 additions & 0 deletions examples/IRrecvDumpV3/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,14 @@ build_flags = -D_IR_LOCALE_=fr-FR ; French
[env:it-IT]
build_flags = -D_IR_LOCALE_=it-IT ; Italian

[env:pt-BR]
build_flags = -D_IR_LOCALE_=pt-BR ; Portuguese (Brazilian)

[env:ru-RU]
build_flags = -D_IR_LOCALE_=ru-RU ; Russian

[env:sv-SE]
build_flags = -D_IR_LOCALE_=sv-SE ; Swedish

[env:zh-CN]
build_flags = -D_IR_LOCALE_=zh-CN ; Chinese (Simplified)

0 comments on commit 0f3fa4d

Please sign in to comment.