Skip to content

Commit b4291d1

Browse files
authored
Drop support for armhf, armv7, and i386 systems (#353)
1 parent a337385 commit b4291d1

5 files changed

Lines changed: 2 additions & 16 deletions

File tree

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"matchStringsStrategy": "any",
1414
"matchStrings": [
1515
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
16-
"(aarch64|amd64|armhf|armv7|i386):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s"
16+
"(aarch64|amd64):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s"
1717
],
1818
"datasourceTemplate": "docker"
1919
},

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
![Supports aarch64 Architecture][aarch64-shield]
88
![Supports amd64 Architecture][amd64-shield]
9-
![Supports armhf Architecture][armhf-shield]
10-
![Supports armv7 Architecture][armv7-shield]
11-
![Supports i386 Architecture][i386-shield]
129

1310
[![GitHub Actions][github-actions-shield]][github-actions]
1411
![Project Maintenance][maintenance-shield]
@@ -117,8 +114,6 @@ SOFTWARE.
117114

118115
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
119116
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
120-
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
121-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
122117
[bashio]: https://github.com/hassio-addons/bashio
123118
[commits-shield]: https://img.shields.io/github/commit-activity/y/hassio-addons/addon-base.svg
124119
[commits]: https://github.com/hassio-addons/addon-base/commits/main
@@ -133,7 +128,6 @@ SOFTWARE.
133128
[github-actions]: https://github.com/hassio-addons/addon-base/actions
134129
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
135130
[github-sponsors]: https://github.com/sponsors/frenck
136-
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
137131
[issue]: https://github.com/hassio-addons/addon-base/issues
138132
[label-schema]: http://label-schema.org/
139133
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-base.svg

base/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ RUN \
4949
tzdata=2025b-r0 \
5050
\
5151
&& S6_ARCH="${BUILD_ARCH}" \
52-
&& if [ "${BUILD_ARCH}" = "i386" ]; then S6_ARCH="i686"; \
53-
elif [ "${BUILD_ARCH}" = "amd64" ]; then S6_ARCH="x86_64"; \
54-
elif [ "${BUILD_ARCH}" = "armv7" ]; then S6_ARCH="arm"; fi \
52+
&& if [ "${BUILD_ARCH}" = "amd64" ]; then S6_ARCH="x86_64"; fi \
5553
\
5654
&& curl -L -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" \
5755
| tar -C / -Jxpf - \

base/build.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,3 @@
22
build_from:
33
aarch64: arm64v8/alpine:3.22.2
44
amd64: amd64/alpine:3.22.2
5-
armhf: arm32v6/alpine:3.22.2
6-
armv7: arm32v7/alpine:3.22.2
7-
i386: i386/alpine:3.22.2

base/config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ url: https://github.com/hassio-addons/addon-base
77
arch:
88
- aarch64
99
- amd64
10-
- armhf
11-
- armv7
12-
- i386

0 commit comments

Comments
 (0)