Hi forum…
I need your help to create the yaml file for this repo
https://github.com/simogaspa84/pio-eth-google-iot-core-example/settings
It is not clear to me how to add the external libs and how they are enumerated…
Moreover also the final command to build it is not clear …
Can you help me thanks?
Montana
2
The link is broken, and/or in a private repository.
Hi @Montana
I put here the travis file
os: linux
dist: focal
language: python
python:
- "3.9"
# Cache PlatformIO packages using Travis CI container-based infrastructure
cache:
directories:
- "~/.platformio"
- $HOME/.cache/pip
install:
- pip install -U platformio
- pio update
- platformio lib install 64
script:
- pio ci --board=esp32dev --lib="."
and this is the platformio.ini file
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
lib_deps =
https://github.com/maxgerhardt/EthernetENC.git
knolleary/PubSubClient@^2.8
khoih-prog/Functional-Vlpp@~1.0.2
build_flags =
-DCORE_DEBUG_LEVEL=5
-Iinclude