-
Notifications
You must be signed in to change notification settings - Fork 13
54 lines (48 loc) · 1.56 KB
/
platformio.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
42
43
44
45
46
47
48
49
50
51
52
53
54
name: PlatformIO CI
# GitHub Actions 的工作流语法 : https://docs.github.com/zh/actions/writing-workflows/workflow-syntax-for-github-actions
on:
push:
paths: # 推送以下文件时,就会运行工作流
- "examples/**"
- ".github/workflows/platformio.yml"
- "platformio.ini"
jobs:
build:
runs-on: ubuntu-20.04 # 指定的运行器环境中运行 [ubuntu-latest, macos-latest, windows-latest]
strategy:
matrix:
example:
- examples/bq25896_test
- examples/bq27xxx_test
- examples/cc1101_recv
- examples/cc1101_recv_irq
- examples/cc1101_send
- examples/cc1101_send_irq
- examples/display_test
- examples/encode_test
- examples/factory_test
- examples/infrared_recv_test
- examples/infrared_send_test
- examples/lvgl_test
- examples/pn532_test
- examples/record_test
- examples/tf_card_test
- examples/voice_test
- examples/ws2812_test
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Run PlatformIO
run: |
export PLATFORMIO_SRC_DIR=${{ matrix.example }}
pio run