Skip to content

Commit 2353299

Browse files
authored
Drop support for armv7 systems (#54)
1 parent 93ea511 commit 2353299

File tree

5 files changed

+2
-11
lines changed

5 files changed

+2
-11
lines changed

.github/renovate.json

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

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@
44
![Project Stage][project-stage-shield]
55
[![License][license-shield]](LICENSE.md)
66

7-
![Supports armhf Architecture][armhf-shield]
8-
![Supports armv7 Architecture][armv7-shield]
97
![Supports aarch64 Architecture][aarch64-shield]
108
![Supports amd64 Architecture][amd64-shield]
11-
![Supports i386 Architecture][i386-shield]
129

1310
[![Github Actions][github-actions-shield]][github-actions]
1411
![Project Maintenance][maintenance-shield]
@@ -96,8 +93,6 @@ SOFTWARE.
9693

9794
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
9895
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
99-
[armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
100-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
10196
[commits-shield]: https://img.shields.io/github/commit-activity/y/hassio-addons/addon-whisparr.svg
10297
[commits]: https://github.com/hassio-addons/addon-whisparr/commits/main
10398
[contributors]: https://github.com/hassio-addons/addon-whisparr/graphs/contributors
@@ -110,7 +105,6 @@ SOFTWARE.
110105
[frenck]: https://github.com/frenck
111106
[github-actions-shield]: https://github.com/hassio-addons/addon-whisparr/workflows/CI/badge.svg
112107
[github-actions]: https://github.com/hassio-addons/addon-whisparr/actions
113-
[i386-shield]: https://img.shields.io/badge/i386-no-red.svg
114108
[issue]: https://github.com/hassio-addons/addon-whisparr/issues
115109
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-whisparr.svg
116110
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg

whisparr/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ RUN \
1818
xmlstarlet=1.6.1-r2 \
1919
\
2020
&& if [ "${BUILD_ARCH}" = "aarch64" ]; then WHISPARR_ARCH="arm64"; \
21-
elif [ "${BUILD_ARCH}" = "amd64" ]; then WHISPARR_ARCH="x64"; \
22-
elif [ "${BUILD_ARCH}" = "armv7" ]; then WHISPARR_ARCH="arm"; fi \
21+
elif [ "${BUILD_ARCH}" = "amd64" ]; then WHISPARR_ARCH="x64"; fi \
2322
\
2423
&& curl -J -L -o /tmp/whisparr.tar.gz \
2524
"https://whisparr.servarr.com/v1/update/nightly/updatefile?version=${WHISPARR_VERSION}&os=linuxmusl&runtime=netcore&arch=${WHISPARR_ARCH}" \

whisparr/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: ghcr.io/hassio-addons/base:18.2.1
44
amd64: ghcr.io/hassio-addons/base:18.2.1
5-
armv7: ghcr.io/hassio-addons/base:18.2.1

whisparr/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ init: false
99
arch:
1010
- aarch64
1111
- amd64
12-
- armv7
1312
map:
1413
- addon_config:rw
1514
- share:rw

0 commit comments

Comments
 (0)