show how to restrict the default build to your user defined environments
This commit is contained in:
parent
1e0ec3b592
commit
d9af772a57
|
@ -1,3 +1,8 @@
|
||||||
|
[platformio]
|
||||||
|
#if you want a pio run to only build
|
||||||
|
#your special environments you can set this here
|
||||||
|
#by uncommenting the next line
|
||||||
|
#default_envs = testboard
|
||||||
[env:testboard]
|
[env:testboard]
|
||||||
board = m5stack-atom
|
board = m5stack-atom
|
||||||
lib_deps =
|
lib_deps =
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
; Please visit documentation for the other options and examples
|
; Please visit documentation for the other options and examples
|
||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
[platformio]
|
[platformio]
|
||||||
extra_configs=
|
|
||||||
lib/*task*/platformio.ini
|
|
||||||
default_envs=
|
default_envs=
|
||||||
m5stack-atom
|
m5stack-atom
|
||||||
m5stack-atom-canunit
|
m5stack-atom-canunit
|
||||||
m5stickc-atom-canunit
|
m5stickc-atom-canunit
|
||||||
nodemcu-homberger
|
nodemcu-homberger
|
||||||
|
extra_configs=
|
||||||
|
lib/*task*/platformio.ini
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
|
Loading…
Reference in New Issue