File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
.buildkite/scripts/cuvs-snapshot Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,7 @@ echo "--- Updating snapshot"
2828
2929echo " $CUVS_SNAPSHOT_VERSION " > " $SNAPSHOT_VERSION_FILE "
3030
31- # CURRENT_SHA="$(gh api "/repos/elastic/elasticsearch/contents/$SNAPSHOT_VERSION_FILE?ref=$BRANCH_TO_UPDATE" | jq -r .sha)"
32- CURRENT_SHA=test
31+ CURRENT_SHA=" $( gh api " /repos/elastic/elasticsearch/contents/$SNAPSHOT_VERSION_FILE ?ref=$BRANCH_TO_UPDATE " | jq -r .sha) " || true
3332
3433echo gh api -X PUT " /repos/elastic/elasticsearch/contents/$SNAPSHOT_VERSION_FILE " \
3534 -f branch=" $BRANCH_TO_UPDATE " \
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ repositories {
2020dependencies {
2121 compileOnly project(path : xpackModule(' core' ))
2222 compileOnly project(' :server' )
23- implementation ' com.nvidia.cuvs:cuvs-java:25.10.0'
23+ implementation(' com.nvidia.cuvs:cuvs-java:25.10.0' ) {
24+ changing = true // Ensure that we get updates even when the version number doesn't change. We can remove this once things stabilize
25+ }
2426 testImplementation(testArtifact(project(xpackModule(' core' ))))
2527 testImplementation(testArtifact(project(' :server' )))
2628 clusterModules project(xpackModule(' gpu' ))
You can’t perform that action at this time.
0 commit comments