File tree 2 files changed +6
-18
lines changed
features/src/rapids-build-utils/opt/rapids-build-utils/bin
2 files changed +6
-18
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
-
54
52
# Install the latest sccache client
55
53
devcontainer-utils-install-sccache --repo trxcllnt/sccache;
56
54
73
71
# so that fix needs to be integrated into the kitware pip ninja builds.
74
72
rapids-post-start-command --exclude <(echo ninja);
75
73
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
- 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
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 &
20
8
if test -n " ${PYTHON_PACKAGE_MANAGER: +x} " ; then
21
9
rapids-make-" ${PYTHON_PACKAGE_MANAGER} " -env " $@ " || true ;
22
10
fi
You can’t perform that action at this time.
0 commit comments