Skip to content

Commit 26ce4ff

Browse files
authored
Don't forceably stop the sccache server (#400)
Revert change to stop the sccache server between rebuilds.
1 parent e595fe0 commit 26ce4ff

File tree

4 files changed

+1
-10
lines changed

4 files changed

+1
-10
lines changed

features/src/rapids-build-utils/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "NVIDIA RAPIDS devcontainer build utilities",
33
"id": "rapids-build-utils",
4-
"version": "24.10.11",
4+
"version": "24.10.12",
55
"description": "A feature to install the RAPIDS devcontainer build utilities",
66
"containerEnv": {
77
"BASH_ENV": "/etc/bash.bash_env"

features/src/rapids-build-utils/opt/rapids-build-utils/bin/tmpl/cpp.build.tmpl.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ build_${CPP_LIB}_cpp() {
1717
local -;
1818
set -euo pipefail;
1919

20-
# Stop the sccache server in case we need to reload credentials before starting the next build
21-
sccache --stop-server >/dev/null 2>&1 || true;
22-
2320
eval "$(\
2421
PARALLEL_LEVEL=${PARALLEL_LEVEL:-$(nproc --all)} \
2522
MAX_TOTAL_SYSTEM_MEMORY="${MAX_TOTAL_SYSTEM_MEMORY:-${CPP_MAX_TOTAL_SYSTEM_MEMORY}}" \

features/src/rapids-build-utils/opt/rapids-build-utils/bin/tmpl/python.build.wheel.tmpl.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ build_${PY_LIB}_python_wheel() {
2121
local -;
2222
set -euo pipefail;
2323

24-
# Stop the sccache server in case we need to reload credentials before starting the next build
25-
sccache --stop-server >/dev/null 2>&1 || true;
26-
2724
eval "$( \
2825
PARALLEL_LEVEL=${PARALLEL_LEVEL:-$(nproc --all)} \
2926
rapids-get-num-archs-jobs-and-load "$@" \

features/src/rapids-build-utils/opt/rapids-build-utils/bin/tmpl/python.install.tmpl.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ install_${PY_LIB}_python() {
2121
local -;
2222
set -euo pipefail;
2323

24-
# Stop the sccache server in case we need to reload credentials before starting the next build
25-
sccache --stop-server >/dev/null 2>&1 || true;
26-
2724
eval "$( \
2825
PARALLEL_LEVEL=${PARALLEL_LEVEL:-$(nproc --all)} \
2926
rapids-get-num-archs-jobs-and-load "$@" \

0 commit comments

Comments
 (0)