mirror of
https://github.com/thelsing/knx.git
synced 2025-08-22 13:46:21 +02:00
save work
This commit is contained in:
parent
1dc216d523
commit
f53c55a845
@ -83,13 +83,14 @@
|
|||||||
directories:
|
directories:
|
||||||
- "~/.platformio"
|
- "~/.platformio"
|
||||||
env:
|
env:
|
||||||
- PLATFORMIO_EXTRA_SCRIPTS=pre:~/build/nanosonde/knx/examples/knx-usb/custom_hwids.py
|
- PLATFORMIO_EXTRA_SCRIPTS=pre:/tmp/scripts/custom_hwids.py
|
||||||
install:
|
install:
|
||||||
- pip install -U platformio
|
- pip install -U platformio
|
||||||
- platformio update
|
- platformio update
|
||||||
script:
|
script:
|
||||||
#- mkdir -p /tmp/scripts
|
# PRE scripts have to be copied manually as "platformio ci does not care about it"
|
||||||
#- cp examples/knx-usb/custom_hwids.py /tmp/scripts
|
- mkdir -p /tmp/scripts
|
||||||
|
- cp examples/knx-usb/custom_hwids.py /tmp/scripts
|
||||||
- platformio settings set force_verbose yes
|
- platformio settings set force_verbose yes
|
||||||
- echo "-------";pwd;echo "--------";
|
- echo "-------";pwd;echo "--------";
|
||||||
- platformio ci --lib="." --project-conf=examples/knx-usb/platformio-ci.ini examples/knx-usb/src/main.cpp
|
- platformio ci --lib="." --project-conf=examples/knx-usb/platformio-ci.ini examples/knx-usb/src/main.cpp
|
||||||
|
@ -8,12 +8,16 @@
|
|||||||
; 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]
|
||||||
|
; We have to keep libdeps dir out the project directory otherwise,
|
||||||
|
; library scanner seems to have issues so compilation fails
|
||||||
libdeps_dir = /tmp/libdeps
|
libdeps_dir = /tmp/libdeps
|
||||||
|
|
||||||
[env:adafruit_feather_m0]
|
[env:adafruit_feather_m0]
|
||||||
platform = atmelsam
|
platform = atmelsam
|
||||||
board = adafruit_feather_m0
|
board = adafruit_feather_m0
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
; We consider that the this projects is opened within its project directory
|
||||||
|
; while working with VS Code.
|
||||||
lib_extra_dirs = ../../../
|
lib_extra_dirs = ../../../
|
||||||
|
|
||||||
; VID must be changed to some known KNX Manufacturer
|
; VID must be changed to some known KNX Manufacturer
|
||||||
|
Loading…
Reference in New Issue
Block a user