File tree 2 files changed +18
-6
lines changed
features/src/rapids-build-utils/opt/rapids-build-utils/bin
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 49
49
SCCACHE_DIST_MAX_RETRIES=inf
50
50
SCCACHE_DIST_FALLBACK_TO_LOCAL_COMPILE=false
51
51
build_command : |
52
+ set -x;
53
+
52
54
# Install the latest sccache client
53
55
devcontainer-utils-install-sccache --repo trxcllnt/sccache;
54
56
71
73
# so that fix needs to be integrated into the kitware pip ninja builds.
72
74
rapids-post-start-command --exclude <(echo ninja);
73
75
74
- set -x;
75
-
76
76
# Configure all the C++ libs
77
77
configure-all \
78
78
-j$(ulimit -Hn) \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
3
if ! test -n " ${SKIP_RAPIDS_BUILD_UTILS_POST_START_COMMAND: +x} " ; then
4
- rapids-generate-scripts &
5
- rapids-update-build-dir-links -j &
6
- rapids-make-vscode-workspace --update &
7
- rapids-merge-compile-commands-json > ~ /compile_commands.json &
4
+ time (
5
+ rapids-generate-scripts;
6
+ { set +x; } 2> /dev/null; echo -n " rapids-generate-scripts time:" ;
7
+ ) 2>&1 & true
8
+ time (
9
+ rapids-update-build-dir-links -j;
10
+ { set +x; } 2> /dev/null; echo -n " rapids-update-build-dir-links time:" ;
11
+ ) 2>&1 & true
12
+ time (
13
+ rapids-make-vscode-workspace --update;
14
+ { set +x; } 2> /dev/null; echo -n " rapids-make-vscode-workspace -- time:" ;
15
+ ) 2>&1 & true
16
+ time (
17
+ rapids-merge-compile-commands-json > ~ /compile_commands.json;
18
+ { set +x; } 2> /dev/null; echo -n " rapids-merge-compile-commands-json time:" ;
19
+ ) 2>&1 & true
8
20
if test -n " ${PYTHON_PACKAGE_MANAGER: +x} " ; then
9
21
rapids-make-" ${PYTHON_PACKAGE_MANAGER} " -env " $@ " || true ;
10
22
fi
You can’t perform that action at this time.
0 commit comments