-
Notifications
You must be signed in to change notification settings - Fork 43
120 lines (116 loc) · 3.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: platformio
on:
push:
paths:
- 'platformio/**.ino'
- 'platformio/**.cpp'
- 'platformio/**.h'
- 'platformio/**platformio.ini'
- '**platformio.yml'
# branches: [ master ]
pull_request:
jobs:
main:
name: platformio
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
#with:
# ref: explorer
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: '3.x'
- name: Install Platform IO
run: |
python -m pip install --upgrade pip
pip install -U platformio
# Runs a set of commands using the runners shell
- name: Build Stima V3 i2c-leaf
run: |
cd platformio/stima_v3/i2c-leaf
platformio run
- name: Build Stima V3 i2c-opc
run: |
cd platformio/stima_v3/i2c-opc
platformio run
- name: Build Stima V3 i2c-radiation
run: |
cd platformio/stima_v3/i2c-radiation
platformio run
- name: Build Stima V3 i2c-rain
run: |
cd platformio/stima_v3/i2c-rain
platformio run
- name: Build Stima V3 i2c-th
run: |
cd platformio/stima_v3/i2c-th
platformio run
- name: Build Stima V3 i2c-wind
run: |
cd platformio/stima_v3/i2c-wind
platformio run
- name: Build Stima V3 sensor_config
run: |
cd platformio/stima_v3/sensor_config
platformio run
- name: Build Stima V3 stima
run: |
cd platformio/stima_v3/stima
platformio run
- name: Build Stima V3 test hyt271
run: |
cd platformio/stima_v3/test_hyt271
platformio run
- name: Build Stima V3 test_i2c_multimaster
run: |
cd platformio/stima_v3/test_i2c_multimaster
platformio run
- name: Build Stima V3 test_sim800
run: |
cd platformio/stima_v3/test_sim800
platformio run
- name: Build Stima V3 test_mqtt_sim800
run: |
cd platformio/stima_v3/test_mqtt_sim800
platformio run
- name: Build Stima V3 test_mqtt_subscribe_sim800
run: |
cd platformio/stima_v3/test_mqtt_subscribe_sim800
platformio run
- name: Build Stima V3 test_jsonrpc
run: |
cd platformio/stima_v3/test_jsonrpc
platformio run
- name: Build Stima V3 test_sdcard
run: |
cd platformio/stima_v3/test_sdcard
platformio run
- name: Build Stima V3 test_sensordriver
run: |
cd platformio/stima_v3/test_sensordriver
platformio run
- name: Build Stima test_logging
run: |
cd platformio/stima_v3/test_logging
platformio run
- name: Build Stima fakeraingauge
run: |
cd platformio/test/fakeraingauge
platformio run
- name: Build Stima faketh
run: |
cd platformio/test/faketh
platformio run
- name: Build Stima fakewind
run: |
cd platformio/test/fakewind
platformio run
- name: Build Stima fakewindsonic
run: |
cd platformio/test/fakewindsonic
platformio run
- name: Build Stima devel
run: |
cd platformio/stima_devel/stima
platformio run