[docker ci] Split up amd64 (x86_64) and arm64 builds (#4054)
* [docker ci] Split up amd64 (x86_64) and arm64 builds - Lets run them seperately to cut down total time - Will also more clearly show if either arch has specific problems - Kept amd64 (x86_64) using qemu actions so if GitHub ever offers arm64 boxes it could stay working too Fixes #3971 * Add CHANGES entry --------- Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
parent
f23b845a29
commit
30c6bb3651
@ -1,4 +1,4 @@
|
|||||||
name: docker
|
name: docker amd64 (x86_64)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -39,7 +39,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: pyfound/black:latest,pyfound/black:${{ env.GIT_TAG }}
|
tags: pyfound/black:latest,pyfound/black:${{ env.GIT_TAG }}
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: pyfound/black:latest_release
|
tags: pyfound/black:latest_release
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: pyfound/black:latest_prerelease
|
tags: pyfound/black:latest_prerelease
|
||||||
|
|
69
.github/workflows/docker_arm64.yml
vendored
Normal file
69
.github/workflows/docker_arm64.yml
vendored
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
name: docker arm64
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "main"
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
if: github.repository == 'psf/black'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Check + set version tag
|
||||||
|
run:
|
||||||
|
echo "GIT_TAG=$(git describe --candidates=0 --tags 2> /dev/null || echo
|
||||||
|
latest_non_release)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: pyfound/black:latest,pyfound/black:${{ env.GIT_TAG }}
|
||||||
|
|
||||||
|
- name: Build and push latest_release tag
|
||||||
|
if:
|
||||||
|
${{ github.event_name == 'release' && github.event.action == 'published' &&
|
||||||
|
!github.event.release.prerelease }}
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: pyfound/black:latest_release
|
||||||
|
|
||||||
|
- name: Build and push latest_prerelease tag
|
||||||
|
if:
|
||||||
|
${{ github.event_name == 'release' && github.event.action == 'published' &&
|
||||||
|
github.event.release.prerelease }}
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: pyfound/black:latest_prerelease
|
||||||
|
|
||||||
|
- name: Image digest
|
||||||
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
@ -44,6 +44,7 @@
|
|||||||
### Integrations
|
### Integrations
|
||||||
|
|
||||||
- Enable 3.12 CI (#4035)
|
- Enable 3.12 CI (#4035)
|
||||||
|
- Build docker images in parallel (#4054)
|
||||||
- Build docker images with 3.12 (#4055)
|
- Build docker images with 3.12 (#4055)
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
Loading…
Reference in New Issue
Block a user