-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
39 lines (37 loc) · 1.25 KB
/
.drone.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
29
30
31
32
33
34
35
36
37
38
39
kind: pipeline
name: OSQ
steps:
- name: QIO
image: python:3
commands:
- apt update
- apt install -y git
- git submodule update --init --recursive
- pip install -U https://github.com/OS-Q/M03/releases/latest/download/qio.zip
- pio platform install file://.
- pio run -d examples/arduino-blink
- pio run -d examples/esp8266-nonos-sdk-blink
- pio run -d examples/esp8266-rtos-sdk-blink
- pio run -d examples/simba-blink
- pio run -d examples/arduino-blink
- pio run -d examples/arduino-wifiscan
- pio run -d examples/arduino-webserver
- pio run -d examples/esp8266-rtos-sdk-blink
- pio run -d examples/esp8266-nonos-sdk-blink
- name: PIO
image: python:3
commands:
- apt update
- apt install -y git
- git submodule update --init --recursive
- pip install -U https://github.com/platformio/platformio/archive/develop.zip
- pio platform install file://.
- pio run -d examples/arduino-blink
- pio run -d examples/esp8266-nonos-sdk-blink
- pio run -d examples/esp8266-rtos-sdk-blink
- pio run -d examples/simba-blink
- pio run -d examples/arduino-blink
- pio run -d examples/arduino-wifiscan
- pio run -d examples/arduino-webserver
- pio run -d examples/esp8266-rtos-sdk-blink
- pio run -d examples/esp8266-nonos-sdk-blink