This commit is contained in:
Martin Bauer 2020-06-05 22:30:49 +02:00
parent adf5e0a7c3
commit d895d85273
2 changed files with 13 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
image: python:latest
before_script:
- python -V # Print out python version for debugging
- pip install platformio
- apt update && apt install build-essential
build:
script:
- cd firmware
- platformio run
#- platformio test -v -e native

View File

@ -26,6 +26,7 @@ lib_deps =
https://github.com/mabau/ESPAsyncWebServer.git https://github.com/mabau/ESPAsyncWebServer.git
AsyncTCP AsyncTCP
NTPClient NTPClient
HX711@0.7.4
src_filter = +<*> -<native_main.cpp> src_filter = +<*> -<native_main.cpp>
[env:native] [env:native]