mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Docker release - pin buildkit to v0.19.0 (#148372)
Fix nightly build failure during arm64 docker build (since 02.21.2025): https://github.com/pytorch/pytorch/actions/runs/13452177170/job/37588508155#step:12:851 Error: ``` #10 73.62 Segmentation fault (core dumped) #10 73.67 qemu: uncaught target signal 11 (Segmentation fault) - core dumped #10 73.85 Segmentation fault (core dumped) #10 73.85 dpkg: error processing package libc-bin (--configure): #10 73.85 installed libc-bin package post-installation script subprocess returned error exit status 139 ``` Looks like we are hitting: https://github.com/moby/buildkit/issues/5783 Update setup-qemu and buildkit actions to v3 and buildkit to v0.19.0 Please note: CUDA 12.8 error is not related to this failure in nightly cpu arm64. Looks like we are trying to install release torch when running on PR. Cuda 12.8 build is not released yet, hence a failure. Will send followup to make sure we are using nightly torch when running on PR. Pull Request resolved: https://github.com/pytorch/pytorch/pull/148372 Approved by: https://github.com/seemethere
This commit is contained in:
parent
d43c6f0033
commit
0bd2caac55
7
.github/workflows/docker-release.yml
vendored
7
.github/workflows/docker-release.yml
vendored
|
|
@ -103,13 +103,14 @@ jobs:
|
|||
password: ${{ secrets.GHCR_PAT }}
|
||||
# Setup multi-arch image builds
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
uses: docker/setup-qemu-action@v3
|
||||
env:
|
||||
QEMU_BINARY_PATH: ${{ runner.temp }}/bin
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: v0.10.0
|
||||
version: latest
|
||||
driver-opts: image=moby/buildkit:v0.19.0
|
||||
- name: Setup job specific variables
|
||||
run: |
|
||||
set -eou pipefail
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user