Merge pull request #164 from nagyrobi/master

Add gitpod build environment for almost oneclick builds
This commit is contained in:
fvanroie 2021-05-13 09:40:53 +02:00 committed by GitHub
commit 01b26cb70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

5
.gitpod.Dockerfile vendored Normal file
View File

@ -0,0 +1,5 @@
FROM gitpod/workspace-full
USER gitpod
RUN pip install -U platformio

7
.gitpod.yml Normal file
View File

@ -0,0 +1,7 @@
tasks:
- init: cp platformio_override-template.ini platformio_override.ini
- before: platformio upgrade
- command: echo "Please open 'platformio_override.ini', uncomment the platform, override and environment you wish to build for, save and then run command 'platformio run'."
image:
file: .gitpod.Dockerfile