update
All checks were successful
Flow / Base (push) Successful in 4s
Flow / CUDA_Base (push) Successful in 31s
Flow / C (push) Successful in 1m13s
Flow / Cpp (push) Successful in 1m20s
Flow / Python (push) Successful in 55s
Flow / MC_BE (push) Successful in 7s
Flow / JRE (push) Successful in 1m26s
Flow / JDK (push) Successful in 1m29s
Flow / R (push) Successful in 1m11s
Flow / JS (push) Successful in 2m47s
Flow / MC_JRE_11 (push) Successful in 1m27s
Flow / MC_JRE_21 (push) Successful in 1m52s
Flow / MC_JRE_17 (push) Successful in 1m57s
Flow / Steam (push) Successful in 1m54s
Flow / Jupyterlite (push) Successful in 1m16s
Flow / CUDA_Runtime (push) Successful in 2m17s
Flow / Hexo (push) Successful in 55s
Flow / MC_JRE_8 (push) Successful in 3m53s
Flow / Julia (push) Successful in 2m11s
Flow / Steam_Wine (push) Successful in 1m9s
Flow / CUDA_Devel (push) Successful in 2m38s
Flow / LLAMA (push) Successful in 5m26s
Flow / ROCM (push) Successful in 9m0s
Flow / Push (push) Successful in 5s
Push_ghcr / Push (push) Successful in 53s

This commit is contained in:
ben0i0d 2025-02-11 14:20:33 +08:00
parent ae0b9b0596
commit a807edf478

View File

@ -5,9 +5,9 @@ ARG VERSION=6.3.1
ENV PATH="${PATH}:/opt/rocm/bin"
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates wget gnupg2 && \
wget https://repo.radeon.com/amdgpu-install/6.3.1/ubuntu/jammy/amdgpu-install_6.3.60302-1_all.deb && \
wget https://repo.radeon.com/amdgpu-install/6.3.1/ubuntu/jammy/amdgpu-install_6.3.60301-1_all.deb && \
# add ROCm
apt-get install -y ./amdgpu-install_6.3.60302-1_all.deb && rm ./amdgpu-install_6.3.60302-1_all.deb && \
apt-get install -y ./amdgpu-install_6.3.60301-1_all.deb && rm ./amdgpu-install_6.3.60301-1_all.deb && \
# Install ROCm-ml-libraries
apt-get update && apt-get update && apt-get install -y rocm-ml-libraries && \
apt-get clean && rm -rf /var/lib/apt/lists/*