forked from gysmo38/mitsubishi2MQTT
-
Notifications
You must be signed in to change notification settings - Fork 12
81 lines (68 loc) · 2.42 KB
/
build.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
on:
push:
schedule:
- cron: "0 2 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
path: ${{ github.workspace }}/app
- 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: |
cd ${{ github.workspace }}/app
pio run -e ESP8266-ESP01
mv .pio/build/ESP8266-ESP01/firmware.bin mitsubishi2MQTT_ESP8266-ESP01.bin
- name: Build WEMOS_D1_Mini
run: |
cd ${{ github.workspace }}/app
pio run -e WEMOS_D1_Mini
mv .pio/build/WEMOS_D1_Mini/firmware.bin mitsubishi2MQTT_WEMOS_D1_Mini.bin
- name: Build PIO ESP32DEV
run: |
cd ${{ github.workspace }}/app
pio run -e ESP32DEV
mv .pio/build/ESP32DEV/firmware.bin mitsubishi2MQTT_ESP32DEV_PIO.bin
- name: Upload esp8266 artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_ESP8266-ESP01.bin
path: ${{ github.workspace }}/app/mitsubishi2MQTT_ESP8266-ESP01.bin
- name: Upload WEMOS_D1_Mini artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_WEMOS_D1_Mini.bin
path: ${{ github.workspace }}/app/mitsubishi2MQTT_WEMOS_D1_Mini.bin
- name: Upload PIO esp32dev artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_ESP32DEV_PIO.bin
path: ${{ github.workspace }}/app/mitsubishi2MQTT_ESP32DEV_PIO.bin
- name: esp-idf build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v4.4.6
target: esp32
path: app
- name: Rename IDF bin file
run: |
sudo mv ${{ github.workspace }}/app/build/mitsubishi2MQTT.bin ${{ github.workspace }}/app/build/mitsubishi2MQTT_ESP32DEV_IDF.bin
- name: Upload ESP32DEV_IDF artifacts
uses: actions/upload-artifact@v3
with:
name: mitsubishi2MQTT_ESP32DEV_IDF.bin
path: |
${{ github.workspace }}/app/build/mitsubishi2MQTT_ESP32DEV_IDF.bin