1
0

Compare commits

..

18 Commits

9 changed files with 41 additions and 42 deletions

24
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Lint
on: [push, pull_request]
jobs:
build:
name: Add-on configuration
runs-on: ubuntu-latest
strategy:
matrix:
channel: [esphome, esphome-beta, esphome-dev]
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v2
- name: 🛠 Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: 🛠 Install dependencies
run: pip install -r script/requirements.txt
- name: 🛠 Generate files from template
run: python script/generate.py dev beta stable
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channel }}
uses: frenck/action-addon-linter@v2
with:
path: "./${{ matrix.channel }}"

View File

@@ -0,0 +1 @@
Any edits should be made to the files in the 'template' directory

View File

@@ -5,12 +5,8 @@
"aarch64" "aarch64"
], ],
"auth_api": true, "auth_api": true,
"auto_uart": true,
"boot": "auto",
"description": "Beta version of ESPHome Hass.io add-on.", "description": "Beta version of ESPHome Hass.io add-on.",
"hassio_api": true, "hassio_api": true,
"hassio_role": "default",
"homeassistant_api": false,
"host_network": true, "host_network": true,
"image": "esphome/esphome-hassio-{arch}", "image": "esphome/esphome-hassio-{arch}",
"ingress": true, "ingress": true,
@@ -20,7 +16,6 @@
"config:rw" "config:rw"
], ],
"name": "ESPHome (beta)", "name": "ESPHome (beta)",
"options": {},
"panel_icon": "mdi:chip", "panel_icon": "mdi:chip",
"ports": { "ports": {
"6052/tcp": null "6052/tcp": null
@@ -40,8 +35,7 @@
}, },
"slug": "esphome-beta", "slug": "esphome-beta",
"stage": "experimental", "stage": "experimental",
"startup": "application", "uart": true,
"url": "https://beta.esphome.io/", "url": "https://beta.esphome.io/",
"version": "1.16.0b3", "version": "1.16.2"
"webui": "http://[HOST]:[PORT:6052]"
} }

View File

@@ -1,9 +1,7 @@
{ {
"args": {},
"build_from": { "build_from": {
"aarch64": "esphome/esphome-hassio-base-aarch64:2.5.0", "aarch64": "esphome/esphome-hassio-base-aarch64:2.5.0",
"amd64": "esphome/esphome-hassio-base-amd64:2.5.0", "amd64": "esphome/esphome-hassio-base-amd64:2.5.0",
"armv7": "esphome/esphome-hassio-base-armv7:2.5.0" "armv7": "esphome/esphome-hassio-base-armv7:2.5.0"
}, }
"squash": false
} }

View File

@@ -5,12 +5,9 @@
"aarch64" "aarch64"
], ],
"auth_api": true, "auth_api": true,
"auto_uart": true, "uart": true,
"boot": "auto",
"description": "Development Version! Manage and program ESP8266/ESP32 microcontrollers through YAML configuration files", "description": "Development Version! Manage and program ESP8266/ESP32 microcontrollers through YAML configuration files",
"hassio_api": true, "hassio_api": true,
"hassio_role": "default",
"homeassistant_api": false,
"host_network": true, "host_network": true,
"ingress": true, "ingress": true,
"ingress_port": 0, "ingress_port": 0,
@@ -41,8 +38,6 @@
}, },
"slug": "esphome-dev", "slug": "esphome-dev",
"stage": "experimental", "stage": "experimental",
"startup": "application",
"url": "https://next.esphome.io/", "url": "https://next.esphome.io/",
"version": "dev", "version": "dev"
"webui": "http://[HOST]:[PORT:6052]"
} }

View File

@@ -0,0 +1 @@
Any edits should be made to the files in the 'template' directory

View File

@@ -5,12 +5,8 @@
"aarch64" "aarch64"
], ],
"auth_api": true, "auth_api": true,
"auto_uart": true,
"boot": "auto",
"description": "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices.", "description": "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices.",
"hassio_api": true, "hassio_api": true,
"hassio_role": "default",
"homeassistant_api": false,
"host_network": true, "host_network": true,
"image": "esphome/esphome-hassio-{arch}", "image": "esphome/esphome-hassio-{arch}",
"ingress": true, "ingress": true,
@@ -20,7 +16,6 @@
"config:rw" "config:rw"
], ],
"name": "ESPHome", "name": "ESPHome",
"options": {},
"panel_icon": "mdi:chip", "panel_icon": "mdi:chip",
"ports": { "ports": {
"6052/tcp": null "6052/tcp": null
@@ -39,9 +34,7 @@
"streamer_mode": "bool?" "streamer_mode": "bool?"
}, },
"slug": "esphome", "slug": "esphome",
"stage": "stable", "uart": true,
"startup": "application",
"url": "https://esphome.io/", "url": "https://esphome.io/",
"version": "1.15.3", "version": "1.16.2"
"webui": "http://[HOST]:[PORT:6052]"
} }

View File

@@ -38,12 +38,14 @@ def main(args):
for file_, conf_ in copyf.items(): for file_, conf_ in copyf.items():
copyfile(templ / file_, dir_ / file_) copyfile(templ / file_, dir_ / file_)
path = dir_ / 'FILES ARE GENERATED DO NOT EDIT'
with open(path, 'w') as f:
f.write("Any edits should be made to the files in the 'template' directory")
if channel == Channel.dev: if channel == Channel.dev:
path = dir_ / 'build.json' path = dir_ / 'build.json'
build_conf = { build_conf = {
'squash': False, "build_from": {arch: base_image.format(arch=arch) for arch in conf['arch']}
"build_from": {arch: base_image.format(arch=arch) for arch in conf['arch']},
"args": {}
} }
with open(path, 'w') as f: with open(path, 'w') as f:
json.dump(build_conf, f, indent=2, sort_keys=True) json.dump(build_conf, f, indent=2, sort_keys=True)

View File

@@ -1,9 +1,6 @@
--- ---
base: &base base: &base
url: https://esphome.io/ url: https://esphome.io/
webui: 'http://[HOST]:[PORT:6052]'
startup: application
boot: auto
arch: arch:
- amd64 - amd64
- armv7 - armv7
@@ -11,9 +8,6 @@ base: &base
# Uses Hass.io API (auth) # Uses Hass.io API (auth)
hassio_api: true hassio_api: true
auth_api: true auth_api: true
hassio_role: default
# Doesn't use HA API
homeassistant_api: false
# Host network mode for mDNS # Host network mode for mDNS
host_network: true host_network: true
# Ingress settings # Ingress settings
@@ -21,7 +15,7 @@ base: &base
ingress_port: 0 ingress_port: 0
panel_icon: 'mdi:chip' panel_icon: 'mdi:chip'
# Automatically add UART devices to addon # Automatically add UART devices to addon
auto_uart: true uart: true
ports: ports:
'6052/tcp': null '6052/tcp': null
ports_description: ports_description:
@@ -56,24 +50,21 @@ esphome-beta:
<<: *base <<: *base
directory: esphome-beta directory: esphome-beta
name: ESPHome (beta) name: ESPHome (beta)
version: '1.16.0b3' # BETA version: '1.16.2' # BETA
slug: esphome-beta slug: esphome-beta
description: "Beta version of ESPHome Hass.io add-on." description: "Beta version of ESPHome Hass.io add-on."
url: https://beta.esphome.io/ url: https://beta.esphome.io/
image: esphome/esphome-hassio-{arch} image: esphome/esphome-hassio-{arch}
stage: experimental stage: experimental
options: {}
esphome-stable: esphome-stable:
<<: *base <<: *base
directory: esphome directory: esphome
name: ESPHome name: ESPHome
version: '1.15.3' # STABLE version: '1.16.2' # STABLE
slug: esphome slug: esphome
description: "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices." description: "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices."
image: esphome/esphome-hassio-{arch} image: esphome/esphome-hassio-{arch}
stage: stable
options: {}
copy_files: copy_files:
icon.png: icon.png: