@@ -18,7 +18,7 @@ rapids-generate-version > ./VERSION
18
18
RAPIDS_PACKAGE_VERSION=$( head -1 ./VERSION)
19
19
export RAPIDS_PACKAGE_VERSION
20
20
21
- # populates `RATTLER_CHANNELS` array
21
+ # populates `RATTLER_CHANNELS` array and `RATTLER_ARGS` array
22
22
source rapids-rattler-channel-string
23
23
24
24
rapids-logger " Prepending channel ${CPP_CHANNEL} to RATTLER_CHANNELS"
@@ -33,10 +33,7 @@ rapids-logger "Building pylibcugraph"
33
33
# more info is available at
34
34
# https://rattler.build/latest/tips_and_tricks/#using-sccache-or-ccache-with-rattler-build
35
35
rattler-build build --recipe conda/recipes/pylibcugraph \
36
- --experimental \
37
- --no-build-id \
38
- --channel-priority disabled \
39
- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
36
+ " ${RATTLER_ARGS[@]} " \
40
37
" ${RATTLER_CHANNELS[@]} "
41
38
42
39
sccache --show-adv-stats
@@ -45,10 +42,7 @@ sccache --zero-stats
45
42
rapids-logger " Building cugraph"
46
43
47
44
rattler-build build --recipe conda/recipes/cugraph \
48
- --experimental \
49
- --no-build-id \
50
- --channel-priority disabled \
51
- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
45
+ " ${RATTLER_ARGS[@]} " \
52
46
" ${RATTLER_CHANNELS[@]} "
53
47
54
48
sccache --show-adv-stats
@@ -61,10 +55,7 @@ sccache --show-adv-stats
61
55
rapids-logger " Building cugraph-service"
62
56
63
57
rattler-build build --recipe conda/recipes/cugraph-service \
64
- --experimental \
65
- --no-build-id \
66
- --channel-priority disabled \
67
- --output-dir " $RAPIDS_CONDA_BLD_OUTPUT_DIR " \
58
+ " ${RATTLER_ARGS[@]} " \
68
59
" ${RATTLER_CHANNELS[@]} "
69
60
70
61
# remove build_cache directory to avoid uploading the entire source tree
0 commit comments