ci: use requirements.txt to manage certbot/cryptography versions #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Builder | |
env: | |
BUILD_ARGS: "--test" | |
MONITORED_FILES: "build.yaml config.yaml Dockerfile requirements.txt rootfs" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
name: Initialize builds | |
outputs: | |
changed_addons: ${{ steps.changed_addons.outputs.addons }} | |
changed: ${{ steps.changed_addons.outputs.changed }} | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed_files | |
# pinning out of paranoia; this is the modern-node fork of jitterbit/get-changed-files | |
# at v3.0.0 | |
uses: masesgroup/retrieve-changed-files@491e80760c0e28d36ca6240a27b1ccb8e1402c13 | |
- name: Find add-on directories | |
id: addons | |
uses: home-assistant/actions/helpers/find-addons@master | |
- name: Get changed add-ons | |
id: changed_addons | |
run: | | |
declare -a changed_addons | |
for addon in ${{ steps.addons.outputs.addons }}; do | |
# if one of the changed files was this action, we retry all the builds | |
if [[ "${{ steps.changed_files.outputs.all }}" =~ '.github/workflows/.*\.yml' ]]; then | |
changed_addons+=("\"${addon}\","); | |
echo "Including ${addon} because the build action changed" | |
elif [[ "${{ steps.changed_files.outputs.all }}" =~ $addon ]]; then | |
for file in ${{ env.MONITORED_FILES }}; do | |
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon/$file ]]; then | |
if [[ ! "${changed_addons[@]}" =~ $addon ]]; then | |
changed_addons+=("\"${addon}\","); | |
fi | |
fi | |
done | |
fi | |
done | |
changed=$(echo ${changed_addons[@]} | rev | cut -c 2- | rev) | |
if [[ -n ${changed} ]]; then | |
echo "Changed add-ons: $changed"; | |
echo "changed=true" >> $GITHUB_OUTPUT | |
echo "addons=[$changed]" >> $GITHUB_OUTPUT | |
# echo "::set-output name=changed::true"; | |
# echo "::set-output name=addons::[$changed]"; | |
else | |
echo "No add-on had any monitored files changed (${{ env.MONITORED_FILES }})"; | |
fi | |
test: | |
needs: init | |
runs-on: ubuntu-latest | |
if: needs.init.outputs.changed == 'true' && github.event_name == 'pull_request' | |
name: Verify ${{ matrix.addon }} add-on before build/publish | |
strategy: | |
matrix: | |
addon: ${{ fromJson(needs.init.outputs.changed_addons) }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Get information | |
id: info | |
uses: home-assistant/actions/helpers/info@master | |
with: | |
path: "./${{ matrix.addon }}" | |
- name: Test ${{ matrix.addon }} add-on | |
uses: home-assistant/builder@master | |
with: | |
args: | | |
--test \ | |
--all \ | |
--target /data/${{ matrix.addon }} \ | |
--image "${{ matrix.addon }}" \ | |
--docker-hub "ghcr.io/${{ github.repository_owner }}" | |
build: | |
needs: init | |
runs-on: ubuntu-latest | |
if: needs.init.outputs.changed == 'true' && github.event_name != 'pull_request' | |
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on | |
strategy: | |
matrix: | |
addon: ${{ fromJson(needs.init.outputs.changed_addons) }} | |
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Get information | |
id: info | |
uses: home-assistant/actions/helpers/info@master | |
with: | |
path: "./${{ matrix.addon }}" | |
- name: Check if add-on should be built | |
id: check | |
run: | | |
if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then | |
echo "build_arch=true" >> $GITHUB_OUTPUT | |
echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)" >> $GITHUB_OUTPUT | |
# echo "::set-output name=build_arch::true"; | |
# echo "::set-output name=image::$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)"; | |
if [[ -z "${{ github.head_ref }}" ]] && [[ "${{ github.event_name }}" == "push" ]]; then | |
echo "BUILD_ARGS=" >> $GITHUB_ENV; | |
fi | |
else | |
echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build"; | |
echo "build_arch=false" >> $GITHUB_OUTPUT | |
# echo "::set-output name=build_arch::false"; | |
fi | |
- name: Login to GitHub Container Registry | |
if: env.BUILD_ARGS != '--test' | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build ${{ matrix.addon }} add-on | |
if: steps.check.outputs.build_arch == 'true' | |
uses: home-assistant/[email protected] | |
with: | |
args: | | |
${{ env.BUILD_ARGS }} \ | |
--${{ matrix.arch }} \ | |
--target /data/${{ matrix.addon }} \ | |
--image "${{ matrix.addon }}" \ | |
--docker-hub "ghcr.io/${{ github.repository_owner }}" \ | |
--addon |