mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 00:08:11 +00:00
Merge branch 'update-release-script' into 'main'
Update release tooling to allow for rc release that don't update all packages. See merge request nvidia/container-toolkit/container-toolkit!188
This commit is contained in:
commit
a4258277e1
@ -1,3 +1,3 @@
|
||||
FROM centos:8
|
||||
FROM quay.io/centos/centos:stream8
|
||||
|
||||
RUN yum install -y createrepo rpm-sign pinentry
|
||||
|
@ -116,8 +116,19 @@ function sync() {
|
||||
return
|
||||
fi
|
||||
mkdir -p ${dst}
|
||||
cp ${src}/libnvidia-container*.${pkg_type} ${dst}
|
||||
cp ${src}/nvidia-container-toolkit*.${pkg_type} ${dst}
|
||||
|
||||
for f in $(ls ${src}/libnvidia-container*.${pkg_type} ${src}/nvidia-container-toolkit*.${pkg_type}); do
|
||||
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
|
||||
if [[ ${REPO} == "stable" ]]; then
|
||||
cp ${src}/nvidia-container-runtime*.${pkg_type} ${dst}
|
||||
cp ${src}/nvidia-docker*.${pkg_type} ${dst}
|
||||
|
Loading…
Reference in New Issue
Block a user