Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-ais.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
inputs.platform == 'ubuntu' && 'apt'
}}
AIS_PKG_TYPE: ${{ inputs.platform == 'ubuntu' && 'DEB' || 'RPM' }}
AIS_ROCM_VERSION: 6.4.2
AIS_ROCM_VERSION: 7.1.1
# Code coverage report only vetted to work for amdclang++ on Ubuntu
AIS_USE_CODE_COVERAGE: ${{ inputs.cxx_compiler == 'amdclang++' && inputs.platform == 'ubuntu' }}
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
Nightly Build as of: $(date)

The packages contained here are not suitable for production workloads.
These packages are currently tied to the current version of our CI (6.4.2).
These packages are currently tied to the current version of our CI (7.1.1).
" \
--prerelease \
--target develop \
Expand Down
12 changes: 1 addition & 11 deletions util/docker/DOCKERFILE.ais_ci_rocky
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.source=https://github.com/ROCm/hipFile
# Brings ROCKY_VERSION in-scope
ARG ROCKY_MAJOR_VERSION
ARG ROCKY_VERSION
ARG ROCm_VERSION=6.4.2
ARG ROCm_VERSION=7.1.1

# Update repo and install program dependencies.
# microdnf is too stripped down, install full dnf.
Expand Down Expand Up @@ -44,16 +44,6 @@ gpgcheck=1
gpgkey=https://repo.radeon.com/rocm/rocm.gpg.key
EOF

RUN cat <<EOF > /etc/yum.repos.d/amdgpu.repo
[amdgpu-${ROCm_VERSION}]
name=amdgpu${ROCm_VERSION}
baseurl=https://repo.radeon.com/amdgpu/${ROCm_VERSION}/rhel/${ROCKY_VERSION}/main/$(uname -m)
enabled=1
priority=50
gpgcheck=1
gpgkey=https://repo.radeon.com/rocm/rocm.gpg.key
EOF

# Development Dependencies
# clang version == 19
# libssl-dev == openssl-devel
Expand Down
12 changes: 1 addition & 11 deletions util/docker/DOCKERFILE.ais_ci_suse
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM opensuse/leap:${SUSE_VERSION}
LABEL org.opencontainers.image.source=https://github.com/ROCm/hipFile
ARG SUSE_MAJOR_VERSION
ARG SUSE_VERSION
ARG ROCm_VERSION=6.4.2
ARG ROCm_VERSION=7.1.1

# The initial pull takes some time. Expect ~2.5 minutes to complete.
RUN zypper refresh
Expand Down Expand Up @@ -39,16 +39,6 @@ gpgcheck=1
gpgkey=https://repo.radeon.com/rocm/rocm.gpg.key
EOF

RUN cat <<EOF > /etc/zypp/repos.d/amdgpu.repo
[amdgpu-${ROCm_VERSION}]
name=amdgpu${ROCm_VERSION}
baseurl=https://repo.radeon.com/amdgpu/${ROCm_VERSION}/sle/${SUSE_VERSION}/main/$(uname -m)
enabled=1
priority=50
gpgcheck=1
gpgkey=https://repo.radeon.com/rocm/rocm.gpg.key
EOF

RUN zypper --gpg-auto-import-keys refresh

# Development Dependencies
Expand Down
3 changes: 1 addition & 2 deletions util/docker/DOCKERFILE.ais_ci_ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source=https://github.com/ROCm/hipFile
ARG UBUNTU_CODENAME
ARG UBUNTU_MAJOR_VERSION=24
ARG UBUNTU_MINOR_VERSION=04
ARG ROCm_VERSION=6.4.2
ARG ROCm_VERSION=7.1.1

RUN apt update && \
apt install -y \
Expand All @@ -22,7 +22,6 @@ RUN curl https://repo.radeon.com/rocm/rocm.gpg.key | \
# Manually setup ROCm Package Repos
RUN cat <<EOF > /etc/apt/sources.list.d/rocm.list
deb [arch=amd64 signed-by=/etc/apt/keyrings/rocm.gpg] https://repo.radeon.com/rocm/apt/${ROCm_VERSION} ${UBUNTU_CODENAME} main
deb [arch=amd64 signed-by=/etc/apt/keyrings/rocm.gpg] https://repo.radeon.com/amdgpu/${ROCm_VERSION}/ubuntu ${UBUNTU_CODENAME} main
EOF

RUN cat <<EOF > /etc/apt/preferences.d/rocm-pin-600
Expand Down