Skip to content

Commit

Permalink
fix workflows and build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
adeepn committed Oct 1, 2024
1 parent 2821919 commit fa25476
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 49 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/jh-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
BUILD_TYPE: core
DEFAULT_PYTHON: "3.12.3"
DEFAULT_PYTHON: "3.12"
PIP_TIMEOUT: 60
UV_HTTP_TIMEOUT: 60
UV_SYSTEM_PYTHON: "true"
Expand All @@ -27,15 +27,15 @@ jobs:
publish: ${{ steps.version.outputs.publish }}
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7
with:
fetch-depth: 0

- name: update build.yaml
run: cp -f build-jethub.yaml build.yaml

- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ env.DEFAULT_PYTHON }}

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: find ./homeassistant/components/*/translations -name "*.json" | tar zcvf translations.tar.gz -T -

- name: Upload translations
uses: actions/[email protected].3
uses: actions/[email protected].6
with:
name: translations
path: translations.tar.gz
Expand All @@ -96,14 +96,14 @@ jobs:
arch: ${{ fromJson(needs.init.outputs.architectures) }}
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: update build.yaml
run: cp -f build-jethub.yaml build.yaml

- name: Download nightly wheels of frontend
if: needs.init.outputs.channel == 'dev'
uses: dawidd6/action-download-artifact@v3.1.4
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{secrets.GITHUB_TOKEN}}
repo: home-assistant/frontend
Expand All @@ -114,7 +114,7 @@ jobs:

- name: Download nightly wheels of intents
if: needs.init.outputs.channel == 'dev'
uses: dawidd6/action-download-artifact@v3.1.4
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{secrets.GITHUB_TOKEN}}
repo: home-assistant/intents-package
Expand All @@ -125,7 +125,7 @@ jobs:

- name: Set up Python ${{ env.DEFAULT_PYTHON }}
if: needs.init.outputs.channel == 'dev'
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ env.DEFAULT_PYTHON }}

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
sed -i "s|pykrakenapi|# pykrakenapi|g" requirements_all.txt
- name: Download translations
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: translations

Expand All @@ -206,14 +206,14 @@ jobs:
echo "${{ github.sha }};${{ github.ref }};${{ github.event_name }};${{ github.actor }}" > rootfs/OFFICIAL_IMAGE
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build base image
uses: jethub-homeassistant/builder@2024.03.5
uses: jethub-homeassistant/builder@2024.08.2
with:
args: |
$BUILD_ARGS \
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
- tinker
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: update build.yaml
run: cp -f build-jethub.yaml build.yaml
Expand All @@ -278,14 +278,14 @@ jobs:
fi
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build base image
uses: jethub-homeassistant/builder@2024.03.5
uses: jethub-homeassistant/builder@2024.08.2
with:
args: |
$BUILD_ARGS \
Expand All @@ -300,7 +300,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: update build.yaml
run: cp -f build-jethub.yaml build.yaml
Expand Down Expand Up @@ -343,10 +343,10 @@ jobs:
registry: ["ghcr.io/jethub-homeassistant", "cr.jethome.work/ha"]
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: Install Cosign
uses: sigstore/cosign-installer@v3.5.0
uses: sigstore/cosign-installer@v3.6.0
with:
cosign-release: "v2.2.3"

Expand All @@ -355,15 +355,15 @@ jobs:

- name: Login to DockerHub
if: matrix.registry == 'cr.jethome.work/ha'
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
registry: cr.jethome.work
username: ${{ secrets.CR_USERNAME }}
password: ${{ secrets.CR_TOKEN }}

- name: Login to GitHub Container Registry
if: matrix.registry == 'ghcr.io/jethub-homeassistant'
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/jh-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- "**strings.json"

env:
DEFAULT_PYTHON: "3.12.3"
DEFAULT_PYTHON: "3.12"

jobs:
upload:
Expand All @@ -22,10 +22,12 @@ jobs:
runs-on: ${{ vars.RUNNER }}
steps:
- name: Checkout the repository
uses: actions/[email protected]
uses: actions/[email protected]
with:
fetch-depth: 0

- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ env.DEFAULT_PYTHON }}

Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/jh-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
workflow_call:

env:
DEFAULT_PYTHON: "3.12.3"
DEFAULT_PYTHON: "3.12"

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name}}
Expand All @@ -34,11 +34,11 @@ jobs:
architectures: ${{ steps.info.outputs.architectures }}
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ env.DEFAULT_PYTHON }}
check-latest: true
Expand Down Expand Up @@ -84,14 +84,14 @@ jobs:
) > .env_file
- name: Upload env_file
uses: actions/[email protected].3
uses: actions/[email protected].6
with:
name: env_file
path: ./.env_file
overwrite: true

- name: Upload requirements_diff
uses: actions/[email protected].3
uses: actions/[email protected].6
with:
name: requirements_diff
path: ./requirements_diff.txt
Expand All @@ -103,7 +103,7 @@ jobs:
python -m script.gen_requirements_all ci
- name: Upload requirements_all_wheels
uses: actions/[email protected].3
uses: actions/[email protected].6
with:
name: requirements_all_wheels
path: ./requirements_all_wheels_*.txt
Expand All @@ -120,20 +120,20 @@ jobs:
arch: ${{ fromJson(needs.init.outputs.architectures) }}
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: Download env_file
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: env_file

- name: Download requirements_diff
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: requirements_diff

- name: Build wheels
uses: jethub-homeassistant/wheels@2024.01.0
uses: jethub-homeassistant/wheels@2024.07.1
with:
abi: ${{ matrix.abi }}
tag: musllinux_1_2
Expand All @@ -158,20 +158,20 @@ jobs:
arch: ${{ fromJson(needs.init.outputs.architectures) }}
steps:
- name: Checkout the repository
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: Download env_file
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: env_file

- name: Download requirements_diff
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: requirements_diff

- name: Download requirements_all_wheels
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: requirements_all_wheels

Expand Down Expand Up @@ -205,58 +205,58 @@ jobs:
sed -i "/numpy/d" homeassistant/package_constraints.txt
- name: Build wheels (old cython)
uses: jethub-homeassistant/wheels@2024.01.0
uses: jethub-homeassistant/wheels@2024.07.1
with:
abi: ${{ matrix.abi }}
tag: musllinux_1_2
arch: ${{ matrix.arch }}
wheels-key: ${{ secrets.WHEELS_KEY }}
env-file: true
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev"
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic;pymicro-vad
constraints: "homeassistant/package_constraints.txt"
requirements-diff: "requirements_diff.txt"
requirements: "requirements_old-cython.txt"
pip: "'cython<3'"

- name: Build wheels (part 1)
uses: jethub-homeassistant/wheels@2024.01.0
uses: jethub-homeassistant/wheels@2024.07.1
with:
abi: ${{ matrix.abi }}
tag: musllinux_1_2
arch: ${{ matrix.arch }}
wheels-key: ${{ secrets.WHEELS_KEY }}
env-file: true
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm"
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic;pymicro-vad
constraints: "homeassistant/package_constraints.txt"
requirements-diff: "requirements_diff.txt"
requirements: "requirements_all.txtaa"

- name: Build wheels (part 2)
uses: jethub-homeassistant/wheels@2024.01.0
uses: jethub-homeassistant/wheels@2024.07.1
with:
abi: ${{ matrix.abi }}
tag: musllinux_1_2
arch: ${{ matrix.arch }}
wheels-key: ${{ secrets.WHEELS_KEY }}
env-file: true
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm"
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic;pymicro-vad
constraints: "homeassistant/package_constraints.txt"
requirements-diff: "requirements_diff.txt"
requirements: "requirements_all.txtab"

- name: Build wheels (part 3)
uses: jethub-homeassistant/wheels@2024.01.0
uses: jethub-homeassistant/wheels@2024.07.1
with:
abi: ${{ matrix.abi }}
tag: musllinux_1_2
arch: ${{ matrix.arch }}
wheels-key: ${{ secrets.WHEELS_KEY }}
env-file: true
apk: "bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev;yaml-dev;openblas-dev;fftw-dev;lapack-dev;gfortran;blas-dev;eigen-dev;freetype-dev;glew-dev;harfbuzz-dev;hdf5-dev;libdc1394-dev;libtbb-dev;mesa-dev;openexr-dev;openjpeg-dev;uchardet-dev;nasm"
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic
skip-binary: aiohttp;charset-normalizer;grpcio;SQLAlchemy;protobuf;pydantic;pymicro-vad
constraints: "homeassistant/package_constraints.txt"
requirements-diff: "requirements_diff.txt"
requirements: "requirements_all.txtac"
10 changes: 5 additions & 5 deletions build-jethub.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
image: ghcr.io/jethub-homeassistant/{arch}-homeassistant
build_from:
aarch64: ghcr.io/jethub-homeassistant/aarch64-homeassistant-base:2024.03.0
armhf: ghcr.io/jethub-homeassistant/armhf-homeassistant-base:2024.03.0
armv7: ghcr.io/jethub-homeassistant/armv7-homeassistant-base:2024.03.0
amd64: ghcr.io/jethub-homeassistant/amd64-homeassistant-base:2024.03.0
i386: ghcr.io/jethub-homeassistant/i386-homeassistant-base:2024.03.0
aarch64: ghcr.io/jethub-homeassistant/aarch64-homeassistant-base:2024.06.1
armhf: ghcr.io/jethub-homeassistant/armhf-homeassistant-base:2024.06.1
armv7: ghcr.io/jethub-homeassistant/armv7-homeassistant-base:2024.06.1
amd64: ghcr.io/jethub-homeassistant/amd64-homeassistant-base:2024.06.1
i386: ghcr.io/jethub-homeassistant/i386-homeassistant-base:2024.06.1
codenotary:
signer: [email protected]
base_image: [email protected]
Expand Down

0 comments on commit fa25476

Please sign in to comment.