Skip to content

Commit 1dda044

Browse files
authored
Merge branch 'main' into add_nvforest
2 parents c66c6ad + fd8dadb commit 1dda044

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "NVIDIA RAPIDS devcontainer build utilities",
33
"id": "rapids-build-utils",
4-
"version": "26.4.4",
4+
"version": "26.4.5",
55
"description": "A feature to install the RAPIDS devcontainer build utilities",
66
"containerEnv": {
77
"BASH_ENV": "/etc/bash.bash_env"
88
},
99
"postStartCommand": [
1010
"/bin/bash",
11-
"-li",
11+
"-lic",
1212
"+o",
1313
"history",
14-
"rapids-post-start-command"
14+
"rapids-post-start-command || true"
1515
]
1616
}
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
#!/usr/bin/env bash
22

3-
if ! test -n "${SKIP_RAPIDS_BUILD_UTILS_POST_START_COMMAND:+x}"; then
3+
_rapids_post_start_command() {
4+
local -;
5+
set -euo pipefail;
6+
47
rapids-generate-scripts;
58
rapids-update-build-dir-links -j &
69
rapids-make-vscode-workspace --update &
710
rapids-merge-compile-commands-json > ~/compile_commands.json &
811
if test -n "${PYTHON_PACKAGE_MANAGER:+x}"; then
9-
rapids-make-"${PYTHON_PACKAGE_MANAGER}"-env "$@" || true;
12+
rapids-make-"${PYTHON_PACKAGE_MANAGER}"-env "$@";
1013
fi
1114
wait
15+
}
16+
17+
if ! test -n "${SKIP_RAPIDS_BUILD_UTILS_POST_START_COMMAND:+x}"; then
18+
_rapids_post_start_command "$@" <&0;
1219
fi

features/src/rapids-build-utils/opt/rapids-build-utils/manifest.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ repos:
130130
- name: rapidsmpf
131131
path: rapidsmpf
132132
git: {<<: *git_defaults, repo: rapidsmpf}
133+
dependency_keys:
134+
- devcontainers
133135
cpp:
134136
- name: rapidsmpf
135137
sub_dir: cpp

0 commit comments

Comments
 (0)