mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
ci: Drop support for ARM v7 platform (#2943)
This platform has had a deprecation notice for 6 months. It is not worth continuing to maintain support for.
This commit is contained in:
parent
bbe3640864
commit
edaeb89c9b
7
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
7
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -22,7 +22,7 @@ body:
|
||||||
|
|
||||||
We provide official support for
|
We provide official support for
|
||||||
|
|
||||||
1. OS/ARCH: Linux on amd64/x86_64 or ARMv7 or ARM64
|
1. OS/ARCH: Linux on AMD64 (x86_64) and ARM64 (AArch64)
|
||||||
2. Containerization platform: Docker and Docker Compose (i.e. based on Docker Engine)
|
2. Containerization platform: Docker and Docker Compose (i.e. based on Docker Engine)
|
||||||
|
|
||||||
Other configurations are not officially supported, but there are maintainers that may be able to help you. This is the case for
|
Other configurations are not officially supported, but there are maintainers that may be able to help you. This is the case for
|
||||||
|
@ -111,9 +111,8 @@ body:
|
||||||
attributes:
|
attributes:
|
||||||
label: What instruction set architecture is DMS running on?
|
label: What instruction set architecture is DMS running on?
|
||||||
options:
|
options:
|
||||||
- x86_64 / AMD64
|
- AMD64 / x86_64
|
||||||
- ARM64 / ARM v8 (and newer)
|
- ARM64 / AArch64 (ARM v8 and newer)
|
||||||
- ARM v7
|
|
||||||
- Other (unsupported)
|
- Other (unsupported)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
5
.github/workflows/generic_build.yml
vendored
5
.github/workflows/generic_build.yml
vendored
|
@ -76,13 +76,12 @@ jobs:
|
||||||
- name: 'Set up QEMU'
|
- name: 'Set up QEMU'
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
platforms: arm64,arm
|
platforms: arm64
|
||||||
|
|
||||||
- name: 'Set up Docker Buildx'
|
- name: 'Set up Docker Buildx'
|
||||||
uses: docker/setup-buildx-action@v2.2.1
|
uses: docker/setup-buildx-action@v2.2.1
|
||||||
|
|
||||||
# NOTE: AMD64 can build within 2 minutes, ARM adds 13 minutes. 330MB each
|
# NOTE: AMD64 can build within 2 minutes
|
||||||
# ARMv7 can build in parallel, adding no extra time (but does add 150MB cache size).
|
|
||||||
- name: 'Build images'
|
- name: 'Build images'
|
||||||
uses: docker/build-push-action@v3.2.0
|
uses: docker/build-push-action@v3.2.0
|
||||||
with:
|
with:
|
||||||
|
|
4
.github/workflows/generic_publish.yml
vendored
4
.github/workflows/generic_publish.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
||||||
- name: 'Set up QEMU'
|
- name: 'Set up QEMU'
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
platforms: arm64,arm
|
platforms: arm64
|
||||||
|
|
||||||
- name: 'Set up Docker Buildx'
|
- name: 'Set up Docker Buildx'
|
||||||
uses: docker/setup-buildx-action@v2.2.1
|
uses: docker/setup-buildx-action@v2.2.1
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
build-args: |
|
build-args: |
|
||||||
VCS_REVISION=${{ github.sha }}
|
VCS_REVISION=${{ github.sha }}
|
||||||
VCS_VERSION=${{ steps.get-version.outputs.version }}
|
VCS_VERSION=${{ steps.get-version.outputs.version }}
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.prep.outputs.tags }}
|
tags: ${{ steps.prep.outputs.tags }}
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
|
|
2
.github/workflows/scheduled_builds.yml
vendored
2
.github/workflows/scheduled_builds.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
name: 'Build Images'
|
name: 'Build Images'
|
||||||
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
publish-images:
|
publish-images:
|
||||||
name: 'Publish Images'
|
name: 'Publish Images'
|
||||||
|
|
4
.github/workflows/test_merge_requests.yml
vendored
4
.github/workflows/test_merge_requests.yml
vendored
|
@ -30,8 +30,8 @@ jobs:
|
||||||
name: 'Build ARM64 Image'
|
name: 'Build ARM64 Image'
|
||||||
# Dependency ensures the cache-key is only created for AMD64 builds.
|
# Dependency ensures the cache-key is only created for AMD64 builds.
|
||||||
# ARM64 will not be able to use this cache, building from scratch each time.
|
# ARM64 will not be able to use this cache, building from scratch each time.
|
||||||
# Expect about 13 minutes build time until adopting `type=gha` with scopes for cache.
|
# Expect about 2 minutes extra build time until adopting `type=gha` with scopes for cache.
|
||||||
needs: build-image-amd64
|
needs: build-image-amd64
|
||||||
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
||||||
with:
|
with:
|
||||||
platforms: linux/arm/v7,linux/arm64
|
platforms: linux/arm64
|
||||||
|
|
Loading…
Reference in a new issue