mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
Remove workaround to add libnvidia-container0 to kitmaker archive
In order to add the libnvidia-container0 packages to our ubuntu18.04 kitmaker archive, a workaround was added that downloaded these packages before constructing the archive. Since the packages have now been published -- and will not change -- this workaround is not longer needed. Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
3030d281d9
commit
243c439bb8
@ -94,19 +94,6 @@ function extract-all() {
|
|||||||
local dist=$1
|
local dist=$1
|
||||||
|
|
||||||
echo "Extracting packages for ${dist} from ${PACKAGE_IMAGE}"
|
echo "Extracting packages for ${dist} from ${PACKAGE_IMAGE}"
|
||||||
|
|
||||||
if [ $dist == "ubuntu18.04" ]; then
|
|
||||||
set -x
|
|
||||||
# We need to publish the libnvidia-container0 packages to the kitmaker repository as a once off operation.
|
|
||||||
# We include the packages here so that these will be added to the archive for the ubuntu18.04 arm64 packages.
|
|
||||||
mkdir -p "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/"
|
|
||||||
curl -L "https://nvidia.github.io/libnvidia-container/ubuntu18.04/arm64/libnvidia-container0_0.10.0+jetpack_arm64.deb" \
|
|
||||||
--output "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/libnvidia-container0_0.10.0+jetpack_arm64.deb"
|
|
||||||
curl -L "https://nvidia.github.io/libnvidia-container/ubuntu18.04/arm64/libnvidia-container0_0.11.0+jetpack_arm64.deb" \
|
|
||||||
--output "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/libnvidia-container0_0.11.0+jetpack_arm64.deb"
|
|
||||||
set +x
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Extract every file for the specified dist-arch combiniation in MANIFEST.txt
|
# Extract every file for the specified dist-arch combiniation in MANIFEST.txt
|
||||||
grep "/${dist}/" "${ARTIFACTS_DIR}/manifest.txt" | while read -r f ; do
|
grep "/${dist}/" "${ARTIFACTS_DIR}/manifest.txt" | while read -r f ; do
|
||||||
package_name="$(basename "$f")"
|
package_name="$(basename "$f")"
|
||||||
|
Loading…
Reference in New Issue
Block a user