Skip to content

Commit 03cf0f4

Browse files
committed
Drop support for armv7 systems
1 parent 1add7a9 commit 03cf0f4

File tree

5 files changed

+2
-12
lines changed

5 files changed

+2
-12
lines changed

.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]
@@ -118,8 +115,6 @@ SOFTWARE.
118115

119116
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
120117
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
121-
[armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
122-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
123118
[bashio]: https://github.com/hassio-addons/bashio
124119
[commits-shield]: https://img.shields.io/github/commit-activity/y/hassio-addons/addon-ubuntu-base.svg
125120
[commits]: https://github.com/hassio-addons/addon-ubuntu-base/commits/main
@@ -134,7 +129,6 @@ SOFTWARE.
134129
[github-actions]: https://github.com/hassio-addons/addon-base/actions
135130
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
136131
[github-sponsors]: https://github.com/sponsors/frenck
137-
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
138132
[issue]: https://github.com/hassio-addons/addon-ubuntu-base/issues
139133
[label-schema]: http://label-schema.org/
140134
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-ubuntu-base.svg

base/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ RUN \
3939
xz-utils=5.6.1+really5.4.5-1 \
4040
\
4141
&& S6_ARCH="${BUILD_ARCH}" \
42-
&& if [ "${BUILD_ARCH}" = "i386" ]; then S6_ARCH="i686"; \
43-
elif [ "${BUILD_ARCH}" = "amd64" ]; then S6_ARCH="x86_64"; \
44-
elif [ "${BUILD_ARCH}" = "armv7" ]; then S6_ARCH="arm"; fi \
42+
&& if [ "${BUILD_ARCH}" = "amd64" ]; then S6_ARCH="x86_64"; fi \
4543
\
4644
&& curl -L -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" \
4745
| tar -C / -Jxpf - \

base/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
build_from:
33
aarch64: arm64v8/ubuntu:noble
44
amd64: amd64/ubuntu:noble
5-
armv7: arm32v7/ubuntu:noble

base/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ url: https://github.com/hassio-addons/addon-ubuntu-base
77
arch:
88
- aarch64
99
- amd64
10-
- armv7

0 commit comments

Comments
 (0)