File tree Expand file tree Collapse file tree
features/src/rapids-build-utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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;
1219fi
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments