File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 11
11
example :
12
12
- " examples/arduino-blink"
13
13
- " examples/arduino-wifi-scan"
14
+ - " examples/arduino-ota"
15
+ - " examples/arduino-signed-ota"
14
16
- " examples/arduino-external-libs"
15
17
runs-on : ${{ matrix.os }}
16
18
steps :
25
27
run : |
26
28
pip install -U https://github.com/platformio/platformio/archive/develop.zip
27
29
pio pkg install --global --platform symlink://.
30
+ if [ "$RUNNER_OS" == "Linux" ]; then
31
+ apt install openssl
32
+ elif [ "$RUNNER_OS" == "Windows" ]; then
33
+ choco install openssl
34
+ elif [ "$RUNNER_OS" == "Mac" ]; then
35
+ brew install openssl
36
+ else
37
+ echo "$RUNNER_OS not supported"
38
+ exit 1
39
+ fi
40
+ shell : bash
28
41
- name : Build examples
29
42
run : |
30
43
pio run -d ${{ matrix.example }}
You can’t perform that action at this time.
0 commit comments