-
-
Notifications
You must be signed in to change notification settings - Fork 47
54 lines (50 loc) · 1.44 KB
/
ci.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
name: CI
on:
push:
paths:
- "components/**"
- "ci/**"
workflow_dispatch:
jobs:
validate:
strategy:
matrix:
esp: ["esp32", "esp8266"]
name: Validate ${{ matrix.esp }} config
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: "3.x"
- name: Install ESPHome
run: |
python -m pip install --upgrade pip
pip install -U esphome
pip install -U pillow
- name: Validate ${{ matrix.esp }} default Config
run: esphome config ci/${{ matrix.esp }}.yaml
- name: Validate ${{ matrix.esp }} manual Config
run: esphome config ci/${{ matrix.esp }}_manual.yaml
build:
strategy:
matrix:
esp: ["esp32", "esp8266"]
name: Build ${{ matrix.esp }} firmware
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: "3.x"
- name: Install ESPHome
run: |
python -m pip install --upgrade pip
pip install -U esphome
pip install -U pillow
- name: Build ${{ matrix.esp }} default config
run: esphome compile ci/${{ matrix.esp }}.yaml
- name: Build ${{ matrix.esp }} manual config
run: esphome compile ci/${{ matrix.esp }}_manual.yaml