mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Bump ESP8266 Arduino framework from 2.7.2 to 2.7.3 (#1229)
This commit is contained in:
parent
8a45dfac5c
commit
b7436c0b22
8 changed files with 8 additions and 7 deletions
2
.github/workflows/ci-docker.yml
vendored
2
.github/workflows/ci-docker.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up env variables
|
- name: Set up env variables
|
||||||
run: |
|
run: |
|
||||||
base_version="2.4.1"
|
base_version="2.5.0"
|
||||||
|
|
||||||
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
||||||
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
||||||
|
|
2
.github/workflows/release-dev.yml
vendored
2
.github/workflows/release-dev.yml
vendored
|
@ -190,7 +190,7 @@ jobs:
|
||||||
echo "::set-env name=TAG::${TAG}"
|
echo "::set-env name=TAG::${TAG}"
|
||||||
- name: Set up env variables
|
- name: Set up env variables
|
||||||
run: |
|
run: |
|
||||||
base_version="2.4.1"
|
base_version="2.5.0"
|
||||||
|
|
||||||
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
||||||
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -210,7 +210,7 @@ jobs:
|
||||||
echo "::set-env name=TAG::${TAG}"
|
echo "::set-env name=TAG::${TAG}"
|
||||||
- name: Set up env variables
|
- name: Set up env variables
|
||||||
run: |
|
run: |
|
||||||
base_version="2.4.1"
|
base_version="2.5.0"
|
||||||
|
|
||||||
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
||||||
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ARG BUILD_FROM=esphome/esphome-base-amd64:2.4.1
|
ARG BUILD_FROM=esphome/esphome-base-amd64:2.5.0
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
# First install requirements to leverage caching when requirements don't change
|
# First install requirements to leverage caching when requirements don't change
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM esphome/esphome-base-amd64:2.4.1
|
FROM esphome/esphome-base-amd64:2.5.0
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM esphome/esphome-lint-base:2.4.1
|
FROM esphome/esphome-lint-base:2.5.0
|
||||||
|
|
||||||
COPY requirements.txt requirements_test.txt /
|
COPY requirements.txt requirements_test.txt /
|
||||||
RUN pip3 install --no-cache-dir -r /requirements.txt -r /requirements_test.txt
|
RUN pip3 install --no-cache-dir -r /requirements.txt -r /requirements_test.txt
|
||||||
|
|
|
@ -25,6 +25,7 @@ ARDUINO_VERSION_ESP32 = {
|
||||||
# See also https://github.com/platformio/platform-espressif8266/releases
|
# See also https://github.com/platformio/platform-espressif8266/releases
|
||||||
ARDUINO_VERSION_ESP8266 = {
|
ARDUINO_VERSION_ESP8266 = {
|
||||||
'dev': 'https://github.com/platformio/platform-espressif8266.git',
|
'dev': 'https://github.com/platformio/platform-espressif8266.git',
|
||||||
|
'2.7.3': 'espressif8266@2.6.1',
|
||||||
'2.7.2': 'espressif8266@2.6.0',
|
'2.7.2': 'espressif8266@2.6.0',
|
||||||
'2.7.1': 'espressif8266@2.5.3',
|
'2.7.1': 'espressif8266@2.5.3',
|
||||||
'2.7.0': 'espressif8266@2.5.0',
|
'2.7.0': 'espressif8266@2.5.0',
|
||||||
|
|
|
@ -44,7 +44,7 @@ validate_platform = cv.one_of(*ESP_PLATFORMS, upper=True)
|
||||||
|
|
||||||
PLATFORMIO_ESP8266_LUT = {
|
PLATFORMIO_ESP8266_LUT = {
|
||||||
**ARDUINO_VERSION_ESP8266,
|
**ARDUINO_VERSION_ESP8266,
|
||||||
'RECOMMENDED': ARDUINO_VERSION_ESP8266['2.7.2'],
|
'RECOMMENDED': ARDUINO_VERSION_ESP8266['2.7.3'],
|
||||||
'LATEST': 'espressif8266',
|
'LATEST': 'espressif8266',
|
||||||
'DEV': ARDUINO_VERSION_ESP8266['dev'],
|
'DEV': ARDUINO_VERSION_ESP8266['dev'],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue