fixes
Docker Build and Release Upload / build-rocm (push) Failing after 4m35s

This commit is contained in:
2026-04-27 17:47:03 -07:00
parent 995672804f
commit a182452605
+2 -1
View File
@@ -35,7 +35,8 @@ WORKDIR /builder
RUN git clone --depth 1 https://github.com/pytorch/audio.git && \ RUN git clone --depth 1 https://github.com/pytorch/audio.git && \
cd audio && \ cd audio && \
git submodule update --init --recursive && \ git submodule update --init --recursive && \
CC=gcc CXX=g++ BUILD_ROCM=1 python3 setup.py install --break-system-packages && \ export PIP_BREAK_SYSTEM_PACKAGES=1 && \
CC=gcc CXX=g++ BUILD_ROCM=1 python3 setup.py install && \
cd .. && rm -rf audio cd .. && rm -rf audio
FROM torch-audio AS runner FROM torch-audio AS runner