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 Aug 30, 2024
1 parent ebdacb6 commit 4213717
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 42 deletions.
32 changes: 16 additions & 16 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].4
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,7 +206,7 @@ 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 }}
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,7 +278,7 @@ 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 }}
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,7 +343,7 @@ 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/[email protected]
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
36 changes: 18 additions & 18 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].4
with:
name: env_file
path: ./.env_file
overwrite: true

- name: Upload requirements_diff
uses: actions/[email protected].3
uses: actions/[email protected].4
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].4
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,7 +205,7 @@ 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
Expand All @@ -220,7 +220,7 @@ jobs:
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
Expand All @@ -234,7 +234,7 @@ jobs:
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
Expand All @@ -248,7 +248,7 @@ jobs:
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
Expand Down
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 4213717

Please sign in to comment.