File tree 5 files changed +26
-8
lines changed
5 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ source rapids-configure-sccache
9
9
10
10
source rapids-date-string
11
11
12
+ source rapids-telemetry-setup
13
+
12
14
export CMAKE_GENERATOR=Ninja
13
15
14
16
rapids-print-env
@@ -17,9 +19,9 @@ rapids-logger "Begin cpp build"
17
19
18
20
sccache --zero-stats
19
21
20
- RAPIDS_PACKAGE_VERSION=$( rapids-generate-version) rapids-conda-retry build \
22
+ RAPIDS_PACKAGE_VERSION=$( rapids-generate-version) rapids-telemetry-record build.log rapids- conda-retry build \
21
23
conda/recipes/libcuml
22
24
23
- sccache --show-adv-stats
25
+ rapids-telemetry-record sccache-stats.txt sccache --show-adv-stats
24
26
25
27
rapids-upload-conda-to-s3 cpp
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ source rapids-configure-sccache
9
9
10
10
source rapids-date-string
11
11
12
+ source rapids-telemetry-setup
13
+
12
14
export CMAKE_GENERATOR=Ninja
13
15
14
16
rapids-print-env
@@ -23,12 +25,12 @@ sccache --zero-stats
23
25
24
26
# TODO: Remove `--no-test` flag once importing on a CPU
25
27
# node works correctly
26
- RAPIDS_PACKAGE_VERSION=$( head -1 ./VERSION) rapids-conda-retry build \
28
+ RAPIDS_PACKAGE_VERSION=$( head -1 ./VERSION) rapids-telemetry-record build.log rapids- conda-retry build \
27
29
--no-test \
28
30
--channel " ${CPP_CHANNEL} " \
29
31
conda/recipes/cuml
30
32
31
- sccache --show-adv-stats
33
+ rapids-telemetry-record sccache-stats.txt sccache --show-adv-stats
32
34
33
35
# Build cuml-cpu only in CUDA 12 jobs since it only depends on python
34
36
# version
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ package_dir=$2
8
8
9
9
source rapids-configure-sccache
10
10
source rapids-date-string
11
+ source rapids-telemetry-setup
11
12
12
13
rapids-generate-version > ./VERSION
13
14
@@ -16,11 +17,11 @@ cd "${package_dir}"
16
17
sccache --zero-stats
17
18
18
19
rapids-logger " Building '${package_name} ' wheel"
19
- rapids-pip-retry wheel \
20
+ rapids-telemetry-record build.log rapids- pip-retry wheel \
20
21
-w dist \
21
22
-v \
22
23
--no-deps \
23
24
--disable-pip-version-check \
24
25
.
25
26
26
- sccache --show-adv-stats
27
+ rapids-telemetry-record sccache-stats.txt sccache --show-adv-stats
Original file line number Diff line number Diff line change @@ -29,8 +29,14 @@ EXCLUDE_ARGS=(
29
29
--exclude " librapids_logger.so"
30
30
)
31
31
32
+ source rapids-telemetry-setup
33
+
34
+ sccache --zero-stats
35
+
32
36
export SKBUILD_CMAKE_ARGS=" -DDISABLE_DEPRECATION_WARNINGS=ON;-DSINGLEGPU=OFF;-DUSE_LIBCUML_WHEEL=ON"
33
- ./ci/build_wheel.sh " ${package_name} " " ${package_dir} "
37
+ rapids-telemetry-record build.log ./ci/build_wheel.sh " ${package_name} " " ${package_dir} "
38
+
39
+ rapids-telemetry-record sccache-stats.txt sccache --show-adv-stats
34
40
35
41
mkdir -p ${package_dir} /final_dist
36
42
python -m auditwheel repair \
Original file line number Diff line number Diff line change @@ -43,8 +43,15 @@ EXCLUDE_ARGS=(
43
43
--exclude " librapids_logger.so"
44
44
)
45
45
46
+ source rapids-telemetry-setup
47
+
48
+ sccache --zero-stats
49
+
46
50
export SKBUILD_CMAKE_ARGS=" -DDISABLE_DEPRECATION_WARNINGS=ON;-DCPM_cumlprims_mg_SOURCE=${GITHUB_WORKSPACE} /cumlprims_mg/"
47
- ./ci/build_wheel.sh " ${package_name} " " ${package_dir} "
51
+
52
+ rapids-telemetry-record build.log ./ci/build_wheel.sh " ${package_name} " " ${package_dir} "
53
+
54
+ rapids-telemetry-record sccache-stats.txt sccache --show-adv-stats
48
55
49
56
mkdir -p ${package_dir} /final_dist
50
57
python -m auditwheel repair \
You can’t perform that action at this time.
0 commit comments