-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
41 lines (39 loc) · 1.33 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
40
41
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/arduino-external-libs
- pio run -d examples/arduino-internal-libs
- pio run -d examples/arduino-blink-different-cores
- pio run -d examples/cmsis-blink
- pio run -d examples/mbed-rtos-blink-baremetal
- pio run -d examples/mbed-serial
- pio run -d examples/spl-blink
- pio run -d examples/stm32cube-hal-blink
- pio run -d examples/stm32cube-ll-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/arduino-external-libs
- pio run -d examples/arduino-internal-libs
- pio run -d examples/arduino-blink-different-cores
- pio run -d examples/cmsis-blink
- pio run -d examples/mbed-rtos-blink-baremetal
- pio run -d examples/mbed-serial
- pio run -d examples/spl-blink
- pio run -d examples/stm32cube-hal-blink
- pio run -d examples/stm32cube-ll-blink