Skip to content

Commit 7f93e8d

Browse files
authored
Remove armv7, armhf and i386 architectures (#120)
1 parent eecb2a3 commit 7f93e8d

5 files changed

Lines changed: 1 addition & 19 deletions

File tree

.github/workflows/builder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
strategy:
6565
matrix:
6666
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
67-
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
67+
arch: ["aarch64", "amd64"]
6868
permissions:
6969
contents: read
7070
packages: write

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ This repository contains the following add-ons
1414

1515
![Supports aarch64 Architecture][aarch64-shield]
1616
![Supports amd64 Architecture][amd64-shield]
17-
![Supports armhf Architecture][armhf-shield]
18-
![Supports armv7 Architecture][armv7-shield]
19-
![Supports i386 Architecture][i386-shield]
2017

2118
_Example add-on to use as a blueprint for new add-ons._
2219

@@ -41,6 +38,3 @@ Notes to developers after forking or using the github template feature:
4138

4239
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
4340
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
44-
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
45-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
46-
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg

example/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ _Example add-on to use as a blueprint for new add-ons._
44

55
![Supports aarch64 Architecture][aarch64-shield]
66
![Supports amd64 Architecture][amd64-shield]
7-
![Supports armhf Architecture][armhf-shield]
8-
![Supports armv7 Architecture][armv7-shield]
9-
![Supports i386 Architecture][i386-shield]
107

118
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
129
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
13-
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
14-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
15-
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg

example/build.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
build_from:
33
aarch64: "ghcr.io/home-assistant/aarch64-base:3.15"
44
amd64: "ghcr.io/home-assistant/amd64-base:3.15"
5-
armhf: "ghcr.io/home-assistant/armhf-base:3.15"
6-
armv7: "ghcr.io/home-assistant/armv7-base:3.15"
7-
i386: "ghcr.io/home-assistant/i386-base:3.15"
85
labels:
96
org.opencontainers.image.title: "Home Assistant Add-on: Example add-on"
107
org.opencontainers.image.description: "Example add-on to use as a blueprint for new add-ons."

example/config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@ slug: example
55
description: Example add-on
66
url: "https://github.com/home-assistant/addons-example/tree/main/example"
77
arch:
8-
- armhf
9-
- armv7
108
- aarch64
119
- amd64
12-
- i386
1310
init: false
1411
map:
1512
- share:rw

0 commit comments

Comments
 (0)