Skip to content

Commit 92d25ad

Browse files
committed
don't background rapids-generate-scripts
1 parent 471307c commit 92d25ad

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

.github/workflows/build-all-rapids-repos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ jobs:
4949
SCCACHE_DIST_MAX_RETRIES=inf
5050
SCCACHE_DIST_FALLBACK_TO_LOCAL_COMPILE=false
5151
build_command: |
52-
set -x;
53-
5452
# Install the latest sccache client
5553
devcontainer-utils-install-sccache --repo trxcllnt/sccache;
5654
@@ -73,6 +71,8 @@ jobs:
7371
# so that fix needs to be integrated into the kitware pip ninja builds.
7472
rapids-post-start-command --exclude <(echo ninja);
7573
74+
set -x;
75+
7676
# Configure all the C++ libs
7777
configure-all \
7878
-j$(ulimit -Hn) \

features/src/rapids-build-utils/opt/rapids-build-utils/bin/post-start-command.sh

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
#!/usr/bin/env bash
22

33
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 &
208
if test -n "${PYTHON_PACKAGE_MANAGER:+x}"; then
219
rapids-make-"${PYTHON_PACKAGE_MANAGER}"-env "$@" || true;
2210
fi

0 commit comments

Comments
 (0)