mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
aa946f3f59
This change adds a script and related files to generate the internal bindings for Sandboxutils library with the help of c-for-go. This can be used to update the bindings when the header file is modified with reference to how they are generated with the Makefile in go-nvml. Run: ./update-bindings.sh Signed-off-by: Evan Lezar <elezar@nvidia.com> Signed-off-by: Huy Nguyen <huyn@nvidia.com> Signed-off-by: Sananya Majumder <sananyam@nvidia.com>
42 lines
1.3 KiB
Bash
Executable File
42 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2024 NVIDIA CORPORATION
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This file allows for the nvsandboxutils bindings to be updated using the tooling
|
|
# implemented in https://github.com/NVIDIA/go-nvml.
|
|
# To run this:
|
|
# cd internal/nvsandboxutils
|
|
# ./update-bindings.sh
|
|
|
|
set -e
|
|
|
|
BUILDIMAGE=bindings
|
|
|
|
docker build \
|
|
--build-arg GOLANG_VERSION=1.22.1 \
|
|
--build-arg C_FOR_GO_TAG=8eeee8c3b71f9c3c90c4a73db54ed08b0bba971d \
|
|
-t ${BUILDIMAGE} \
|
|
-f docker/Dockerfile.devel \
|
|
https://github.com/NVIDIA/go-nvml.git
|
|
|
|
|
|
docker run --rm -ti \
|
|
-e GOCACHE=/tmp/.cache/go \
|
|
-e GOMODCACHE=/tmp/.cache/gomod \
|
|
-v $(pwd):/nvsandboxutils \
|
|
-w /nvsandboxutils \
|
|
-u $(id -u):$(id -g) \
|
|
${BUILDIMAGE} \
|
|
./gen/generate-bindings.sh
|