File tree 1 file changed +40
-0
lines changed
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Tasmota Windows IDF 53_poc_script
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+
7
+ jobs :
8
+ compile_test :
9
+ runs-on : windows-latest
10
+ strategy :
11
+ fail-fast : true
12
+ matrix :
13
+ variant :
14
+ - tasmota32c2
15
+ # - tasmota32s2
16
+ # - tasmota32c3
17
+ - tasmota32c6-safeboot
18
+ # - tasmota32c6
19
+ # - tasmota32
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ - name : Set up Python
23
+ uses : actions/setup-python@v5
24
+ with :
25
+ python-version : ' 3.x'
26
+ - name : Install dependencies
27
+ run : |
28
+ pip install wheel
29
+ #python -m pip install --upgrade pip
30
+ pip install -U platformio
31
+ #platformio upgrade --dev
32
+ #platformio update
33
+ - name : Run PlatformIO
34
+ run : platformio run -e ${{ matrix.variant }}
35
+ -
uses :
jason2866/[email protected]
36
+ with :
37
+ name : firmware
38
+ path : ./build_output
39
+
40
+
You can’t perform that action at this time.
0 commit comments