This repository was archived by the owner on Oct 27, 2023. It is now read-only.
File tree 2 files changed +13
-4
lines changed
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ stages:
5
5
- build-all
6
6
7
7
variables :
8
- # We specify the TOOLKIT_VERSION and TOOLKIT_TAG variable to allow packages
8
+ # We specify the LIB_VERSION, TOOLKIT_VERSION, and TOOLKIT_TAG variable to allow packages
9
9
# to be built.
10
+ LIB_VERSION : 999.999.999
11
+ LIB_TAG : dummy+lib
10
12
TOOLKIT_VERSION : 999.999.999
11
- TOOLKIT_TAG : dummy
13
+ TOOLKIT_TAG : dummy+toolkit
12
14
13
15
.build-setup : &build-setup
14
16
image : docker:19.03.8
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
LIB_NAME := nvidia-container-runtime
16
- LIB_VERSION := 3.7.0
17
- LIB_TAG ?= rc.1
16
+ # Define the package version and tag. Since this package is released as part of
17
+ # the NVIDIA Container Toolkit, these versions are specified where they are
18
+ # built or when invoking the MAKE command.
19
+ LIB_VERSION ?= # Set by CI
20
+ LIB_TAG ?= # Set by CI
21
+
22
+ ifeq ($(strip $(LIB_VERSION ) ) ,)
23
+ $(error LIB_VERSION must be specified)
24
+ endif
18
25
19
26
# Define the nvidia-container-toolkit version on which the nvidia-docker2
20
27
# package depends. It is recommended that the TOOLKIT_TAG and the LIB_TAG match.
You can’t perform that action at this time.
0 commit comments