-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitpod.yml
28 lines (26 loc) · 836 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# example .gitpod.yml from https://github.com/gitpod-io/demo-multi-repo-frontend
additionalRepositories:
- url: https://github.com/thomas-pegot/esp32-motion
checkoutLocation: esp32-motion
- url: https://github.com/thomas-pegot/esp32-camera
checkoutLocation: esp32-camera
tasks:
- name: esp32-camera
init: |
(
cd ../esp32-camera
git pull origin jpgd
gp sync-done bundle
)
- name: camera_web_server
before: |
(
gp sync-await bundle
cd ../camera_web_server
rm -r components/esp32-motion components/esp32-camera
cp -r /workspace/esp32-motion components/esp32-motion
cp -r /workspace/esp32-camera components/esp32-camera
)
command: pip3 install -U platformio && platformio run -e release
image:
file: .gitpod.Dockerfile