Skip to content

Commit e7f882d

Browse files
committed
test fix for RAPIDS_ARTIFACTS_DIR in custom-job.yaml
1 parent 6587e23 commit e7f882d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ jobs:
242242
rust-build:
243243
needs: [conda-cpp-build, changed-files]
244244
secrets: inherit
245-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
245+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@fix/rapids-artifacts-dir
246246
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_rust || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
247247
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
248248
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.

ci/build_rust.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ set -eu
2727

2828
source rapids-configure-sccache
2929

30+
# shellcheck disable=SC2155
31+
export SCCACHE_S3_KEY_PREFIX="cuvs-rs/$(uname -m)/cuda${RAPIDS_CUDA_VERSION%.*}"
32+
3033
rapids-print-env
3134

3235
rapids-logger "Begin rust build"
3336

3437
sccache --stop-server 2>/dev/null || true
3538

36-
# shellcheck disable=SC2155
37-
export SCCACHE_S3_KEY_PREFIX="cuvs-rs/$(uname -m)/cuda${RAPIDS_CUDA_VERSION%.*}"
38-
3939
# we need to set up LIBCLANG_PATH to allow rust bindgen to work,
4040
# grab it from the conda env
4141
LIBCLANG_PATH=$(dirname "$(find /opt/conda -name libclang.so | head -n 1)")

0 commit comments

Comments
 (0)