Skip to content

Commit cd5bbbc

Browse files
committed
Drop i386 support from all addons
Remove i386 architecture support: - isponsorblocktv: Already didn't support i386 - zititunneller: Removed i386 from config.yaml, build.yaml, and Dockerfile - builder.yaml: Removed i386 from CI build matrix i386 is a legacy 32-bit x86 architecture that is rarely used in modern Home Assistant installations. Removing it simplifies builds and reduces maintenance overhead.
1 parent 620fb54 commit cd5bbbc

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

.github/workflows/builder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
matrix:
6969
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
70-
arch: ["aarch64", "amd64", "i386"] # "armhf", "armv7"
70+
arch: ["aarch64", "amd64"] # "armhf", "armv7", "i386"
7171

7272
steps:
7373
- name: Check out repository

zititunneller/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ RUN apt-get update && apt-get -y install unzip && mkdir /identities \
2727
&& if [ "${BUILD_ARCH}" = "armhf" ]; then ARCH="arm"; fi \
2828
&& if [ "${BUILD_ARCH}" = "armv7" ]; then ARCH="arm"; fi \
2929
&& if [ "${BUILD_ARCH}" = "amd64" ]; then ARCH="x86_64"; fi \
30-
&& if [ "${BUILD_ARCH}" = "i386" ]; then ARCH="x86_64"; fi \
3130
&& curl -sSL https://github.com/openziti/ziti-tunnel-sdk-c/releases/download/${ZITI_VERSION}/ziti-edge-tunnel-Linux_${ARCH}.zip -o /opt/ziti-edge-tunnel-Linux_${ARCH}.zip \
3231
&& unzip /opt/ziti-edge-tunnel-Linux_${ARCH}.zip \
3332
&& rm /opt/ziti-edge-tunnel-Linux_${ARCH}.zip \

zititunneller/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ build_from:
44
amd64: "ghcr.io/home-assistant/amd64-base-debian:bookworm"
55
armhf: "ghcr.io/home-assistant/armhf-base-debian:bookworm"
66
armv7: "ghcr.io/home-assistant/armv7-base-debian:bookworm"
7-
i386: "ghcr.io/home-assistant/i386-base-debian:bookworm"

zititunneller/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ arch:
1010
- amd64
1111
- armhf
1212
- armv7
13-
- i386
1413
panel_icon: mdi:lightning-bolt-circle
1514
panel_title: "OpenZiti"
1615
ingress: true

0 commit comments

Comments
 (0)