1a2734cc62
* New framework: Pumbaa Pumbaa is MicroPython on top of Simba. The framework will generate a file called frozen.c from all .py files found in the project src/ folder. The script file main.py is the entry point for the user script. If main.py is missing the application will enter the interactive Python interpreter. All c/cpp source files (including frozen.c) will be compiled, linked and uploaded as an ordinary c application. http://pumbaa.readthedocs.io/en/latest/ * Added pumbaa-blink example to appveyor.
28 lines
937 B
YAML
28 lines
937 B
YAML
build: off
|
|
environment:
|
|
|
|
matrix:
|
|
- PLATFORMIO_PROJECT_DIR: "examples/arduino-blink"
|
|
- PLATFORMIO_PROJECT_DIR: "examples/arduino-wifiscan"
|
|
- PLATFORMIO_PROJECT_DIR: "examples/espidf-hello-world"
|
|
- PLATFORMIO_PROJECT_DIR: "examples/espidf-http-request"
|
|
- PLATFORMIO_PROJECT_DIR: "examples/simba-blink"
|
|
- PLATFORMIO_PROJECT_DIR: "examples/pumbaa-blink"
|
|
|
|
install:
|
|
- cmd: git submodule update --init --recursive
|
|
- cmd: SET PATH=%PATH%;C:\Python27\Scripts
|
|
- cmd: pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
|
- cmd: platformio platform install file://.
|
|
|
|
test_script:
|
|
- cmd: platformio run -d %PLATFORMIO_PROJECT_DIR%
|
|
|
|
notifications:
|
|
- provider: Slack
|
|
incoming_webhook:
|
|
secure: E9H0SU0Ju7WLDvgxsV8cs3J62T3nTTX7QkEjsczN0Sto/c9hWkVfhc5gGWUkxhlD975cokHByKGJIdwYwCewqOI+7BrcT8U+nlga4Uau7J8=
|
|
on_build_success: false
|
|
on_build_failure: true
|
|
on_build_status_changed: true
|