mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-02-22 20:29:34 +00:00
Merge branch 'bump-post-release' into 'main'
Bump versions post release See merge request nvidia/container-toolkit/container-toolkit!214
This commit is contained in:
commit
b5dbcaeaf9
@ -132,8 +132,17 @@ function sync() {
|
|||||||
|
|
||||||
done
|
done
|
||||||
if [[ ${REPO} == "stable" ]]; then
|
if [[ ${REPO} == "stable" ]]; then
|
||||||
cp ${src}/nvidia-container-runtime*.${pkg_type} ${dst}
|
for f in $(ls ${src}/nvidia-container-runtime*.${pkg_type} ${src}/nvidia-docker*.${pkg_type}); do
|
||||||
cp ${src}/nvidia-docker*.${pkg_type} ${dst}
|
df=${dst}/$(basename ${f})
|
||||||
|
df_stable=${df//"/experimental/"/"/stable/"}
|
||||||
|
if [[ -f "${df}" ]]; then
|
||||||
|
echo "${df} already exists; skipping"
|
||||||
|
elif [[ ${REPO} == "experimental" && -f ${df_stable} ]]; then
|
||||||
|
echo "${df_stable} already exists; skipping"
|
||||||
|
else
|
||||||
|
cp ${f} ${df}
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ RUN fpm -s empty \
|
|||||||
rm -f /tmp/docker.rpm
|
rm -f /tmp/docker.rpm
|
||||||
|
|
||||||
|
|
||||||
RUN curl -s -L https://nvidia.github.io/libnvidia-container/fedora35/nvidia-container-toolkit.repo \
|
RUN curl -s -L https://nvidia.github.io/libnvidia-container/fedora35/libnvidia-container.repo \
|
||||||
| tee /etc/yum.repos.d/nvidia-container-toolkit.repo
|
| tee /etc/yum.repos.d/nvidia-container-toolkit.repo
|
||||||
|
|
||||||
COPY entrypoint.sh /
|
COPY entrypoint.sh /
|
||||||
|
11
versions.mk
11
versions.mk
@ -13,13 +13,14 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
LIB_NAME := nvidia-container-toolkit
|
LIB_NAME := nvidia-container-toolkit
|
||||||
LIB_VERSION := 1.11.0
|
LIB_VERSION := 1.12.0
|
||||||
LIB_TAG :=
|
LIB_TAG := rc.1
|
||||||
|
|
||||||
# Specify the nvidia-docker2 and nvidia-container-runtime package versions.
|
# Specify the nvidia-docker2 and nvidia-container-runtime package versions.
|
||||||
# Note: The tag is automatically specified to match LIB_TAG.
|
# Note: The build tooling uses `LIB_TAG` above as the version tag.
|
||||||
NVIDIA_DOCKER_VERSION := 2.11.0
|
# This is appended to the versions below if specified.
|
||||||
NVIDIA_CONTAINER_RUNTIME_VERSION := 3.11.0
|
NVIDIA_DOCKER_VERSION := 2.12.0
|
||||||
|
NVIDIA_CONTAINER_RUNTIME_VERSION := 3.12.0
|
||||||
|
|
||||||
# Specify the expected libnvidia-container0 version for arm64-based ubuntu builds.
|
# Specify the expected libnvidia-container0 version for arm64-based ubuntu builds.
|
||||||
LIBNVIDIA_CONTAINER0_VERSION := 0.10.0+jetpack
|
LIBNVIDIA_CONTAINER0_VERSION := 0.10.0+jetpack
|
||||||
|
Loading…
Reference in New Issue
Block a user