File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ rapids-logger "Begin C++ and Python builds"
19
19
20
20
sccache --zero-stats
21
21
22
- rapids-conda-retry mambabuild \
22
+ RAPIDS_PACKAGE_VERSION= $( rapids-generate-version ) rapids-conda-retry mambabuild \
23
23
conda/recipes/ucxx
24
24
25
25
sccache --show-adv-stats
Original file line number Diff line number Diff line change 1
1
# SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
2
2
# SPDX-License-Identifier: BSD-3-Clause
3
3
4
- {% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') %}
5
- {% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %}
4
+ {% set version = environ['RAPIDS_PACKAGE_VERSION'].lstrip('v') %}
6
5
{% set cuda_version = '.'.join(environ['RAPIDS_CUDA_VERSION'].split('.')[:2]) %}
7
6
{% set cuda_major = cuda_version.split('.')[0] %}
8
7
{% set date_string = environ['RAPIDS_DATE_STRING'] %}
@@ -189,7 +188,7 @@ outputs:
189
188
script : build_and_install_ucxx.sh
190
189
build :
191
190
number : {{ GIT_DESCRIBE_NUMBER }}
192
- string : cuda{{ cuda_major }}_py{{ python }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
191
+ string : cuda{{ cuda_major }}_py{{ python | replace(".", "") }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
193
192
ignore_run_exports_from :
194
193
- {{ compiler('cuda') }}
195
194
- ucx
You can’t perform that action at this time.
0 commit comments