Skip to content

Commit

Permalink
Remove i386 arch
Browse files Browse the repository at this point in the history
See also #5
  • Loading branch information
OttoWinter committed Jul 15, 2020
1 parent ffa2c44 commit e2dd735
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, i386, armv7, aarch64]
arch: [amd64, armv7, aarch64]
build_type: ["hassio", "docker"]
steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, i386, armv7, aarch64]
arch: [amd64, armv7, aarch64]
build_type: ["hassio", "docker"]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -134,13 +134,11 @@ jobs:
docker manifest create ${base}:${TAG} \
${base}-aarch64:${TAG} \
${base}-amd64:${TAG} \
${base}-armv7:${TAG} \
${base}-i386:${TAG}
${base}-armv7:${TAG}
docker manifest push ${base}:${TAG}
docker manifest create ${base}:dev \
${base}-aarch64:${TAG} \
${base}-amd64:${TAG} \
${base}-armv7:${TAG} \
${base}-i386:${TAG}
${base}-armv7:${TAG}
docker manifest push ${base}:dev
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, i386, armv7, aarch64]
arch: [amd64, armv7, aarch64]
build_type: ["hassio", "docker"]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -134,13 +134,11 @@ jobs:
docker manifest create ${base}:${TAG} \
${base}-aarch64:${TAG} \
${base}-amd64:${TAG} \
${base}-armv7:${TAG} \
${base}-i386:${TAG}
${base}-armv7:${TAG}
docker manifest push ${base}:${TAG}
docker manifest create ${base}:latest \
${base}-aarch64:${TAG} \
${base}-amd64:${TAG} \
${base}-armv7:${TAG} \
${base}-i386:${TAG}
${base}-armv7:${TAG}
docker manifest push ${base}:latest
2 changes: 0 additions & 2 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ because `arm64v8/ubuntu` focal fossa builds are not working.
The following docker images are built by this repository:

- `esphome/esphome-base-amd64`
- `esphome/esphome-base-i386`
- `esphome/esphome-base-armv7`
- `esphome/esphome-base-aarch64`
- `esphome/esphome-base` (manifest)
- `esphome/esphome-hassio-base-amd64`
- `esphome/esphome-hassio-base-i386`
- `esphome/esphome-hassio-base-armv7`
- `esphome/esphome-hassio-base-aarch64`
- `esphome/esphome-hassio-base` (manifest)
Expand Down
2 changes: 0 additions & 2 deletions gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def gen_hassio(hassio_arch, base_arch, qemu_arch):

HASSIO_ARCHS = [
('amd64', 'amd64', None),
('i386', 'i386', None),
('armv7', 'armv7', 'arm'),
('aarch64', 'aarch64', 'aarch64'),
]
Expand All @@ -55,7 +54,6 @@ def gen_docker(target_arch, docker_arch, qemu_arch):

DOCKER_ARCHS = [
('amd64', 'amd64', None),
('i386', 'i386', None),
('armv7', 'arm32v7', 'arm'),
('aarch64', 'arm64v8', 'aarch64'),
]
Expand Down

0 comments on commit e2dd735

Please sign in to comment.