2020-07-14 14:34:44 +02:00
|
|
|
name: Publish Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# THE LINT/TEST JOBS ARE COPIED FROM ci.yaml
|
2020-07-15 01:37:30 +02:00
|
|
|
|
2020-07-14 14:34:44 +02:00
|
|
|
lint-clang-format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# cpp lint job runs with esphome-lint docker image so that clang-format-*
|
|
|
|
# doesn't have to be installed
|
2021-06-08 22:03:04 +02:00
|
|
|
container: esphome/esphome-lint:1.1
|
2020-07-14 14:34:44 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# Set up the pio project so that the cpp checks know how files are compiled
|
|
|
|
# (build flags, libraries etc)
|
|
|
|
- name: Set up platformio environment
|
|
|
|
run: pio init --ide atom
|
|
|
|
|
|
|
|
- name: Run clang-format
|
|
|
|
run: script/clang-format -i
|
|
|
|
- name: Suggest changes
|
|
|
|
run: script/ci-suggest-changes
|
|
|
|
|
|
|
|
lint-clang-tidy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# cpp lint job runs with esphome-lint docker image so that clang-format-*
|
|
|
|
# doesn't have to be installed
|
2021-06-08 22:03:04 +02:00
|
|
|
container: esphome/esphome-lint:1.1
|
2020-07-14 14:34:44 +02:00
|
|
|
# Split clang-tidy check into 4 jobs. Each one will check 1/4th of the .cpp files
|
|
|
|
strategy:
|
2020-09-29 19:50:06 +02:00
|
|
|
fail-fast: false
|
2020-07-14 14:34:44 +02:00
|
|
|
matrix:
|
|
|
|
split: [1, 2, 3, 4]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# Set up the pio project so that the cpp checks know how files are compiled
|
|
|
|
# (build flags, libraries etc)
|
|
|
|
- name: Set up platformio environment
|
|
|
|
run: pio init --ide atom
|
|
|
|
|
2020-07-15 01:37:30 +02:00
|
|
|
|
2020-07-14 14:34:44 +02:00
|
|
|
- name: Register problem matchers
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/clang-tidy.json"
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/gcc.json"
|
|
|
|
- name: Run clang-tidy
|
|
|
|
run: script/clang-tidy --all-headers --fix --split-num 4 --split-at ${{ matrix.split }}
|
|
|
|
- name: Suggest changes
|
|
|
|
run: script/ci-suggest-changes
|
|
|
|
|
|
|
|
lint-python:
|
|
|
|
# Don't use the esphome-lint docker image because it may contain outdated requirements.
|
|
|
|
# This way, all dependencies are cached via the cache action.
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- name: Cache pip modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: esphome-pip-3.7-${{ hashFiles('setup.py') }}
|
|
|
|
restore-keys: |
|
|
|
|
esphome-pip-3.7-
|
|
|
|
- name: Set up python environment
|
|
|
|
run: script/setup
|
|
|
|
|
|
|
|
- name: Register problem matchers
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/ci-custom.json"
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/lint-python.json"
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/python.json"
|
|
|
|
- name: Lint Custom
|
|
|
|
run: script/ci-custom.py
|
|
|
|
- name: Lint Python
|
|
|
|
run: script/lint-python
|
2020-07-25 15:57:18 +02:00
|
|
|
- name: Lint CODEOWNERS
|
|
|
|
run: script/build_codeowners.py --check
|
2020-07-14 14:34:44 +02:00
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
2020-09-29 19:50:06 +02:00
|
|
|
fail-fast: false
|
2020-07-14 14:34:44 +02:00
|
|
|
matrix:
|
|
|
|
test:
|
|
|
|
- test1
|
|
|
|
- test2
|
|
|
|
- test3
|
|
|
|
- test4
|
2021-06-08 01:56:21 +02:00
|
|
|
- test5
|
2020-07-14 14:34:44 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- name: Cache pip modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: esphome-pip-3.7-${{ hashFiles('setup.py') }}
|
|
|
|
restore-keys: |
|
|
|
|
esphome-pip-3.7-
|
|
|
|
# Use per test platformio cache because tests have different platform versions
|
|
|
|
- name: Cache ~/.platformio
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.platformio
|
2021-05-07 20:02:17 +02:00
|
|
|
key: test-home-platformio-${{ matrix.test }}-${{ hashFiles('esphome/core/config.py') }}
|
2020-07-14 14:34:44 +02:00
|
|
|
restore-keys: |
|
|
|
|
test-home-platformio-${{ matrix.test }}-
|
|
|
|
- name: Set up environment
|
|
|
|
run: script/setup
|
|
|
|
|
|
|
|
- name: Register problem matchers
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/gcc.json"
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/python.json"
|
2021-06-08 01:14:12 +02:00
|
|
|
- run: esphome compile tests/${{ matrix.test }}.yaml
|
2020-07-15 21:42:34 +02:00
|
|
|
|
2020-07-15 14:00:02 +02:00
|
|
|
pytest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- name: Cache pip modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: esphome-pip-3.7-${{ hashFiles('setup.py') }}
|
|
|
|
restore-keys: |
|
|
|
|
esphome-pip-3.7-
|
|
|
|
- name: Set up environment
|
|
|
|
run: script/setup
|
|
|
|
- name: Install Github Actions annotator
|
|
|
|
run: pip install pytest-github-actions-annotate-failures
|
2020-07-15 21:42:34 +02:00
|
|
|
|
2020-07-15 14:00:02 +02:00
|
|
|
- name: Register problem matchers
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::.github/workflows/matchers/python.json"
|
|
|
|
- name: Run pytest
|
|
|
|
run: |
|
|
|
|
pytest \
|
|
|
|
-qq \
|
|
|
|
--durations=10 \
|
|
|
|
-o console_output_style=count \
|
|
|
|
tests
|
2020-07-14 14:34:44 +02:00
|
|
|
|
|
|
|
deploy-pypi:
|
|
|
|
name: Build and publish to PyPi
|
2020-07-15 22:05:00 +02:00
|
|
|
if: github.repository == 'esphome/esphome'
|
2020-07-15 14:00:02 +02:00
|
|
|
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
2020-07-14 14:34:44 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
|
|
|
- name: Set up python environment
|
|
|
|
run: |
|
|
|
|
script/setup
|
|
|
|
pip install setuptools wheel twine
|
|
|
|
- name: Build
|
|
|
|
run: python setup.py sdist bdist_wheel
|
|
|
|
- name: Upload
|
|
|
|
env:
|
|
|
|
TWINE_USERNAME: __token__
|
|
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
|
|
run: twine upload dist/*
|
|
|
|
|
|
|
|
deploy-docker:
|
|
|
|
name: Build and publish docker containers
|
2020-07-15 22:05:00 +02:00
|
|
|
if: github.repository == 'esphome/esphome'
|
2020-07-14 14:34:44 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-15 14:00:02 +02:00
|
|
|
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
2020-07-14 14:34:44 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-07-15 21:42:12 +02:00
|
|
|
arch: [amd64, armv7, aarch64]
|
2020-07-14 14:34:44 +02:00
|
|
|
build_type: ["hassio", "docker"]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-07-15 01:37:30 +02:00
|
|
|
- name: Set TAG
|
|
|
|
run: |
|
|
|
|
TAG="${GITHUB_REF#refs/tags/v}"
|
2020-11-01 23:49:08 +01:00
|
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
2020-07-14 14:34:44 +02:00
|
|
|
- name: Set up env variables
|
|
|
|
run: |
|
2021-06-08 22:03:04 +02:00
|
|
|
base_version="3.4.0"
|
2020-07-14 14:34:44 +02:00
|
|
|
|
|
|
|
if [[ "${{ matrix.build_type }}" == "hassio" ]]; then
|
|
|
|
build_from="esphome/esphome-hassio-base-${{ matrix.arch }}:${base_version}"
|
2020-07-15 01:37:30 +02:00
|
|
|
build_to="esphome/esphome-hassio-${{ matrix.arch }}"
|
2020-07-14 14:34:44 +02:00
|
|
|
dockerfile="docker/Dockerfile.hassio"
|
|
|
|
else
|
|
|
|
build_from="esphome/esphome-base-${{ matrix.arch }}:${base_version}"
|
2020-07-15 01:37:30 +02:00
|
|
|
build_to="esphome/esphome-${{ matrix.arch }}"
|
2020-07-14 14:34:44 +02:00
|
|
|
dockerfile="docker/Dockerfile"
|
|
|
|
fi
|
|
|
|
|
2020-07-28 23:25:55 +02:00
|
|
|
if [[ "${{ github.event.release.prerelease }}" == "true" ]]; then
|
|
|
|
cache_tag="beta"
|
|
|
|
else
|
|
|
|
cache_tag="latest"
|
2020-07-29 20:45:47 +02:00
|
|
|
fi
|
2020-07-28 23:25:55 +02:00
|
|
|
|
2020-07-14 14:34:44 +02:00
|
|
|
# Set env variables so these values don't need to be calculated again
|
2020-11-01 23:49:08 +01:00
|
|
|
echo "BUILD_FROM=${build_from}" >> $GITHUB_ENV
|
|
|
|
echo "BUILD_TO=${build_to}" >> $GITHUB_ENV
|
|
|
|
echo "DOCKERFILE=${dockerfile}" >> $GITHUB_ENV
|
|
|
|
echo "CACHE_TAG=${cache_tag}" >> $GITHUB_ENV
|
2020-07-15 01:37:30 +02:00
|
|
|
- name: Pull for cache
|
|
|
|
run: |
|
2020-07-28 23:25:55 +02:00
|
|
|
docker pull "${BUILD_TO}:${CACHE_TAG}" || true
|
2020-07-14 14:34:44 +02:00
|
|
|
- name: Register QEMU binfmt
|
2021-03-20 20:58:46 +01:00
|
|
|
run: docker run --rm --privileged multiarch/qemu-user-static:5.2.0-2 --reset -p yes
|
2020-07-14 14:34:44 +02:00
|
|
|
- run: |
|
|
|
|
docker build \
|
|
|
|
--build-arg "BUILD_FROM=${BUILD_FROM}" \
|
|
|
|
--build-arg "BUILD_VERSION=${TAG}" \
|
2020-07-15 01:37:30 +02:00
|
|
|
--tag "${BUILD_TO}:${TAG}" \
|
2020-07-28 23:25:55 +02:00
|
|
|
--cache-from "${BUILD_TO}:${CACHE_TAG}" \
|
2020-07-14 14:34:44 +02:00
|
|
|
--file "${DOCKERFILE}" \
|
|
|
|
.
|
|
|
|
- name: Log in to docker hub
|
|
|
|
env:
|
2020-07-14 14:47:03 +02:00
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USER }}
|
2020-07-14 14:34:44 +02:00
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
2020-07-14 14:47:03 +02:00
|
|
|
run: docker login -u "${DOCKER_USER}" -p "${DOCKER_PASSWORD}"
|
2020-07-15 01:37:30 +02:00
|
|
|
- run: docker push "${BUILD_TO}:${TAG}"
|
|
|
|
|
|
|
|
# Always publish to beta tag (also full releases)
|
|
|
|
- name: Publish docker beta tag
|
2020-07-14 14:34:44 +02:00
|
|
|
run: |
|
2020-07-15 01:37:30 +02:00
|
|
|
docker tag "${BUILD_TO}:${TAG}" "${BUILD_TO}:beta"
|
2020-07-14 14:34:44 +02:00
|
|
|
docker push "${BUILD_TO}:beta"
|
2020-07-15 01:37:30 +02:00
|
|
|
|
2020-07-27 12:28:11 +02:00
|
|
|
- if: ${{ !github.event.release.prerelease }}
|
2020-07-14 14:34:44 +02:00
|
|
|
name: Publish docker latest tag
|
|
|
|
run: |
|
2020-07-15 01:37:30 +02:00
|
|
|
docker tag "${BUILD_TO}:${TAG}" "${BUILD_TO}:latest"
|
2020-07-14 14:34:44 +02:00
|
|
|
docker push "${BUILD_TO}:latest"
|
|
|
|
|
|
|
|
deploy-docker-manifest:
|
2020-07-15 22:05:00 +02:00
|
|
|
if: github.repository == 'esphome/esphome'
|
2020-07-14 14:34:44 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [deploy-docker]
|
|
|
|
steps:
|
|
|
|
- name: Enable experimental manifest support
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.docker
|
|
|
|
echo "{\"experimental\": \"enabled\"}" > ~/.docker/config.json
|
2020-07-15 01:37:30 +02:00
|
|
|
- name: Set TAG
|
|
|
|
run: |
|
|
|
|
TAG="${GITHUB_REF#refs/tags/v}"
|
2020-11-01 23:49:08 +01:00
|
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
2020-07-14 14:34:44 +02:00
|
|
|
- name: Log in to docker hub
|
|
|
|
env:
|
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USER }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
run: docker login -u "${DOCKER_USER}" -p "${DOCKER_PASSWORD}"
|
|
|
|
- name: "Create the manifest"
|
|
|
|
run: |
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest create esphome/esphome:${TAG} \
|
|
|
|
esphome/esphome-aarch64:${TAG} \
|
|
|
|
esphome/esphome-amd64:${TAG} \
|
2020-07-15 21:42:12 +02:00
|
|
|
esphome/esphome-armv7:${TAG}
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest push esphome/esphome:${TAG}
|
2020-07-14 14:34:44 +02:00
|
|
|
|
|
|
|
- name: Publish docker beta tag
|
|
|
|
run: |
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest create esphome/esphome:beta \
|
|
|
|
esphome/esphome-aarch64:${TAG} \
|
|
|
|
esphome/esphome-amd64:${TAG} \
|
2020-07-15 21:42:12 +02:00
|
|
|
esphome/esphome-armv7:${TAG}
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest push esphome/esphome:beta
|
|
|
|
|
2020-07-14 14:34:44 +02:00
|
|
|
- name: Publish docker latest tag
|
2020-07-27 12:28:11 +02:00
|
|
|
if: ${{ !github.event.release.prerelease }}
|
2020-07-14 14:34:44 +02:00
|
|
|
run: |
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest create esphome/esphome:latest \
|
|
|
|
esphome/esphome-aarch64:${TAG} \
|
|
|
|
esphome/esphome-amd64:${TAG} \
|
2020-07-15 21:42:12 +02:00
|
|
|
esphome/esphome-armv7:${TAG}
|
2020-07-15 01:37:30 +02:00
|
|
|
docker manifest push esphome/esphome:latest
|
2020-07-28 23:25:55 +02:00
|
|
|
|
|
|
|
deploy-hassio-repo:
|
|
|
|
if: github.repository == 'esphome/esphome'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [deploy-docker]
|
|
|
|
steps:
|
|
|
|
- env:
|
|
|
|
TOKEN: ${{ secrets.DEPLOY_HASSIO_TOKEN }}
|
|
|
|
run: |
|
|
|
|
TAG="${GITHUB_REF#refs/tags/v}"
|
|
|
|
curl \
|
|
|
|
-u ":$TOKEN" \
|
|
|
|
-X POST \
|
|
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
|
|
https://api.github.com/repos/esphome/hassio/actions/workflows/bump-version.yml/dispatches \
|
|
|
|
-d "{\"ref\":\"master\",\"inputs\":{\"version\":\"$TAG\"}}"
|