Skip to content

Commit

Permalink
Remove support for ppc64le arch (nodejs/docker-node#2107)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jul 26, 2024
1 parent 39ad433 commit fe8d7f0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ jobs:
# TODO: Return `arm32v6`, `arm32v7` and `s390x` once
# nodejs/docker-node#1973 is resolved:
# https://github.com/nodejs/docker-node/issues/1973
# TODO: Return `ppc64le` once nodejs/docker-node#2107 is resolved:
# https://github.com/nodejs/docker-node/issues/2107
arch:
- amd64
- arm64v8
- ppc64le
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -66,10 +67,11 @@ jobs:
# TODO: Return `arm32v6`, `arm32v7` and `s390x` once
# nodejs/docker-node#1973 is resolved:
# https://github.com/nodejs/docker-node/issues/1973
# TODO: Return `ppc64le` once nodejs/docker-node#2107 is resolved:
# https://github.com/nodejs/docker-node/issues/2107
arch:
- amd64
- arm64v8
- ppc64le
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -155,10 +157,11 @@ jobs:
# TODO: Return `arm32v6`, `arm32v7` and `s390x` once
# nodejs/docker-node#1973 is resolved:
# https://github.com/nodejs/docker-node/issues/1973
# TODO: Return `ppc64le` once nodejs/docker-node#2107 is resolved:
# https://github.com/nodejs/docker-node/issues/2107
run: |
for platform in linux-amd64 \
linux-arm64v8 \
linux-ppc64le
linux-arm64v8
do
make docker.untar \
from-file=.cache/$platform-${{ github.run_number }}/image.tar
Expand All @@ -175,11 +178,12 @@ jobs:
# TODO: Return `arm32v6`, `arm32v7` and `s390x` once
# nodejs/docker-node#1973 is resolved:
# https://github.com/nodejs/docker-node/issues/1973
# TODO: Return `ppc64le` once nodejs/docker-node#2107 is resolved:
# https://github.com/nodejs/docker-node/issues/2107
run: make docker.manifest push=yes
registries=${{ matrix.registry }}
of='${{ steps.version.outputs.group1 }}-linux-amd64
${{ steps.version.outputs.group1 }}-linux-arm64v8
${{ steps.version.outputs.group1 }}-linux-ppc64le'
${{ steps.version.outputs.group1 }}-linux-arm64v8'
if: ${{ steps.skip.outputs.no == 'true' }}

# On GitHub Container Registry README is automatically updated on pushes.
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All user visible changes to this project will be documented in this file. This p



## [3.0.3-node22-r0] · 2024-06-21
## [3.0.3-node22-r0] · 2024-07-26
[3.0.3-node22-r0]: /../../tree/v3.0.3-node22-r0

[Diff](/../../compare/v3.0.3-node21-r0...v3.0.3-node22-r0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Haraka Docker image

## Supported platforms

- `linux`: `amd64`, `arm64v8`, `ppc64le`
- `linux`: `amd64`, `arm64v8`



Expand Down

0 comments on commit fe8d7f0

Please sign in to comment.