-
Notifications
You must be signed in to change notification settings - Fork 141
55 lines (47 loc) · 1.5 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
on:
push:
schedule:
- cron: "0 2 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build Generic8266(ESP-01)
run: |
pio run -e ESP8266-ESP01
mv .pio/build/ESP8266-ESP01/firmware.bin mitsubishi2MQTT_ESP8266-ESP01.bin
- name: Build WEMOS_D1_Mini
run: |
pio run -e WEMOS_D1_Mini
mv .pio/build/WEMOS_D1_Mini/firmware.bin mitsubishi2MQTT_WEMOS_D1_Mini.bin
- name: Build ESP32DEV
run: |
pio run -e ESP32DEV
mv .pio/build/ESP32DEV/firmware.bin mitsubishi2MQTT_ESP32DEV.bin
- name: Upload esp8266 artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_ESP8266-ESP01.bin
path: mitsubishi2MQTT_ESP8266-ESP01.bin
- name: Upload esp32dev artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_ESP32DEV.bin
path: mitsubishi2MQTT_ESP32DEV.bin
- name: Upload WEMOS_D1_Mini artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_WEMOS_D1_Mini.bin
path: mitsubishi2MQTT_WEMOS_D1_Mini.bin