Skip to content

Commit ae312b9

Browse files
committed
Encode cpu arch into the libcuvs_c artifact-name
1 parent e89bfac commit ae312b9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pr.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
node_type: "cpu16"
196196
# requires_license_builder: false
197197
script: "ci/build_standalone_c.sh --build-tests"
198-
artifact-name: "libcuvs_c_${{ matrix.cuda_version }}.tar.gz"
198+
artifact-name: "libcuvs_c_${{ matrix.cuda_version }}_${{ matrix.arch }}.tar.gz"
199199
file_to_upload: "libcuvs_c.tar.gz"
200200
sha: ${{ inputs.sha }}
201201
rocky8-clib-tests:
@@ -218,6 +218,8 @@ jobs:
218218
arch: "${{matrix.arch}}"
219219
date: ${{ inputs.date }}_c
220220
container_image: "rapidsai/ci-wheel:26.02-cuda${{ matrix.cuda_version }}-rockylinux8-py3.10"
221+
env: |
222+
RAPIDS_TEST_ARCH=${{ matrix.arch }}
221223
script: "ci/test_standalone_c.sh"
222224
sha: ${{ inputs.sha }}
223225
# conda-java-build-and-tests:

ci/test_standalone_c.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rapids-pip-retry install cmake
88
pyenv rehash
99

1010
# Download the standalone C library artifact
11-
payload_name="libcuvs_c_${RAPIDS_CUDA_VERSION}.tar.gz"
11+
payload_name="libcuvs_c_${RAPIDS_CUDA_VERSION}_${RAPIDS_TEST_ARCH}.tar.gz"
1212
pkg_name="libcuvs_c.tar.gz"
1313
rapids-logger "Download ${payload_name} artifacts from previous jobs"
1414
DOWNLOAD_LOCATION=$(rapids-download-from-github "${payload_name}")

0 commit comments

Comments
 (0)