File tree Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,14 @@ sccache --zero-stats
2121RAPIDS_PACKAGE_VERSION=$( rapids-generate-version)
2222export RAPIDS_PACKAGE_VERSION
2323
24+ # populates `RATTLER_CHANNELS` array and `RATTLER_ARGS` array
2425source rapids-rattler-channel-string
2526
2627# --no-build-id allows for caching with `sccache`
2728# more info is available at
2829# https://rattler.build/latest/tips_and_tricks/#using-sccache-or-ccache-with-rattler-build
2930rattler-build build --recipe conda/recipes/libcuvs \
30- --experimental \
31- --no-build-id \
32- --channel-priority disabled \
33- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
31+ " ${RATTLER_ARGS[@]} " \
3432 " ${RATTLER_CHANNELS[@]} "
3533
3634sccache --show-adv-stats
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ echo "${version}" > VERSION
2424sccache --zero-stats
2525
2626
27- # populates `RATTLER_CHANNELS` array
27+ # populates `RATTLER_CHANNELS` array and `RATTLER_ARGS` array
2828source rapids-rattler-channel-string
2929
3030rapids-logger " Prepending channel ${CPP_CHANNEL} to RATTLER_CHANNELS"
@@ -39,22 +39,15 @@ rapids-logger "Building cuvs"
3939# more info is available at
4040# https://rattler.build/latest/tips_and_tricks/#using-sccache-or-ccache-with-rattler-build
4141rattler-build build --recipe conda/recipes/cuvs \
42- --experimental \
43- --no-build-id \
44- --channel-priority disabled \
45- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
46- --test skip \
42+ " ${RATTLER_ARGS[@]} " \
4743 " ${RATTLER_CHANNELS[@]} "
4844
4945sccache --show-adv-stats
5046sccache --zero-stats
5147
5248rattler-build build --recipe conda/recipes/cuvs-bench \
53- --experimental \
54- --no-build-id \
55- --channel-priority disabled \
56- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
5749 --test skip \
50+ " ${RATTLER_ARGS[@]} " \
5851 " ${RATTLER_CHANNELS[@]} "
5952
6053sccache --show-adv-stats
@@ -65,10 +58,7 @@ sccache --zero-stats
6558RAPIDS_CUDA_MAJOR=" ${RAPIDS_CUDA_VERSION%% .* } "
6659if [[ ${RAPIDS_CUDA_MAJOR} == " 12" ]]; then
6760 rattler-build build --recipe conda/recipes/cuvs-bench-cpu \
68- --experimental \
69- --no-build-id \
70- --channel-priority disabled \
71- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
61+ " ${RATTLER_ARGS[@]} " \
7262 " ${RATTLER_CHANNELS[@]} "
7363 sccache --show-adv-stats
7464fi
You can’t perform that action at this time.
0 commit comments