Skip to content

Commit 4e2a2f1

Browse files
committed
Merge remote-tracking branch 'origin/main' into pr1907-reconcile
2 parents 8e1492c + ff2abd4 commit 4e2a2f1

234 files changed

Lines changed: 19558 additions & 5788 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ CMakeLists.txt @NVIDIA/cuvs-cmake-codeowners
2828
cpp/scripts/run-cmake-format.sh @NVIDIA/cuvs-cmake-codeowners
2929

3030
#CI code owners
31+
/.coderabbit.yaml @NVIDIA/adi-ci-codeowners
3132
/.github/ @NVIDIA/adi-ci-codeowners
32-
/ci/ @NVIDIA/adi-ci-codeowners
3333
/.shellcheckrc @NVIDIA/adi-ci-codeowners
34-
/.coderabbit.yaml @NVIDIA/adi-ci-codeowners
34+
/.yamllint.yaml @NVIDIA/adi-ci-codeowners
35+
/ci/ @NVIDIA/adi-ci-codeowners
3536

3637
#packaging code owners
3738
/.pre-commit-config.yaml @NVIDIA/adi-packaging-codeowners

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
permissions:
226226
contents: read
227227
secrets:
228-
GPUTESTER_CRATES_TOKEN: ${{ secrets.GPUTESTER_CRATES_TOKEN }}
228+
GPUTESTER_CRATES_TOKEN: ${{ secrets.GPUTESTER_CRATES_TOKEN }}
229229
uses: ./.github/workflows/publish-rust.yaml
230230
docs-build:
231231
if: github.ref_type == 'branch'

.github/workflows/check-c-abi.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Find merge base commit
3232
id: merge-base
3333
run: |
34-
git fetch origin release/26.08
35-
MERGE_BASE=$(git merge-base HEAD origin/release/26.08)
34+
git fetch origin main
35+
MERGE_BASE=$(git merge-base HEAD origin/main)
3636
echo "merge_base_sha=${MERGE_BASE}" >> $GITHUB_OUTPUT
3737
echo "Merge base commit: ${MERGE_BASE}"
3838
@@ -46,40 +46,40 @@ jobs:
4646
commit: ${{ steps.merge-base.outputs.merge_base_sha }}
4747
path: baseline/
4848

49-
- name: Try to download latest release/26.08 baseline (fallback 1)
49+
- name: Try to download latest main baseline (fallback 1)
5050
id: download-main
5151
if: steps.download-merge-base.outcome == 'failure'
5252
continue-on-error: true
5353
uses: dawidd6/action-download-artifact@8a338493df3d275e4a7a63bcff3b8fe97e51a927 # v19
5454
with:
55-
name: c-abi-baseline-release/26.08
55+
name: c-abi-baseline-main
5656
workflow: check-c-abi.yaml
57-
branch: release/26.08
57+
branch: main
5858
path: baseline/
5959

60-
- name: Extract baseline ABI from release/26.08 branch (fallback 2)
60+
- name: Extract baseline ABI from main branch (fallback 2)
6161
if: steps.download-merge-base.outcome == 'failure' && steps.download-main.outcome == 'failure'
6262
run: |
63-
echo "⚠️ No baseline artifacts found, extracting from release/26.08 branch..."
63+
echo "⚠️ No baseline artifacts found, extracting from main branch..."
6464
echo "This is slower but ensures we always have a baseline for comparison."
65-
git worktree add ../cuvs-release-26.08 origin/release/26.08
65+
git worktree add ../cuvs-main origin/main
6666
mkdir -p baseline
6767
check-c-abi extract \
68-
--header-path ../cuvs-release-26.08/c/include \
68+
--header-path ../cuvs-main/c/include \
6969
--include-file cuvs/core/all.h \
7070
--output-file baseline/c_abi.json.gz \
7171
--dlpack-include-path dlpack/include
7272
73-
echo "✓ Baseline ABI extracted from release/26.08 branch"
73+
echo "✓ Baseline ABI extracted from main branch"
7474
7575
- name: Report baseline source
7676
run: |
7777
if [ "$DOWNLOAD_MERGE_BASE_OUTCOME" == "success" ]; then
7878
echo "✓ Using baseline from merge-base commit: $MERGE_BASE_SHA"
7979
elif [ "$DOWNLOAD_MAIN_OUTCOME" == "success" ]; then
80-
echo "✓ Using latest release/26.08 baseline (merge-base baseline not yet available)"
80+
echo "✓ Using latest main baseline (merge-base baseline not yet available)"
8181
else
82-
echo "✓ Using freshly extracted baseline from release/26.08 branch"
82+
echo "✓ Using freshly extracted baseline from main branch"
8383
fi
8484
env:
8585
DOWNLOAD_MERGE_BASE_OUTCOME: ${{ steps.download-merge-base.outcome }}

.github/workflows/labeler.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: "Pull Request Labeler"
33
# incorrectly. These usages are ok and don't execute any PR-specific
44
# code (and so aren't susceptible to exploits from forked PRs)
55
on: # zizmor: ignore[dangerous-triggers]
6-
- pull_request_target
6+
- pull_request_target
77

88
jobs:
9-
triage:
10-
runs-on: ubuntu-latest
11-
permissions:
12-
contents: read
13-
pull-requests: write
14-
steps:
15-
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5
16-
with:
17-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
9+
triage:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
pull-requests: write
14+
steps:
15+
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5
16+
with:
17+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/pr.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ jobs:
9797
- '!.github/workflows/trigger-breaking-change-alert.yaml'
9898
- '!.pre-commit-config.yaml'
9999
- '!.shellcheckrc'
100+
- '!.yamllint.yaml'
100101
- '!Dockerfile'
101102
- '!SECURITY.md'
102103
- '!ci/build_wheel*.sh'
@@ -122,6 +123,7 @@ jobs:
122123
- '!.github/workflows/trigger-breaking-change-alert.yaml'
123124
- '!.pre-commit-config.yaml'
124125
- '!.shellcheckrc'
126+
- '!.yamllint.yaml'
125127
- '!Dockerfile'
126128
- '!README.md'
127129
- '!SECURITY.md'
@@ -160,6 +162,7 @@ jobs:
160162
- '!.github/workflows/trigger-breaking-change-alert.yaml'
161163
- '!.pre-commit-config.yaml'
162164
- '!.shellcheckrc'
165+
- '!.yamllint.yaml'
163166
- '!CODEOWNERS'
164167
- '!Dockerfile'
165168
- '!README.md'
@@ -209,6 +212,7 @@ jobs:
209212
- '!.github/workflows/update-c-abi-baseline.yaml'
210213
- '!.pre-commit-config.yaml'
211214
- '!.shellcheckrc'
215+
- '!.yamllint.yaml'
212216
- '!ci/build_go.sh'
213217
- '!ci/build_java.sh'
214218
- '!ci/build_rust.sh'
@@ -251,6 +255,7 @@ jobs:
251255
- '!.github/workflows/trigger-breaking-change-alert.yaml'
252256
- '!.pre-commit-config.yaml'
253257
- '!.shellcheckrc'
258+
- '!.yamllint.yaml'
254259
- '!ci/build_cpp.sh'
255260
- '!ci/build_docs.sh'
256261
- '!ci/build_go.sh'
@@ -298,6 +303,7 @@ jobs:
298303
- '!.github/workflows/trigger-breaking-change-alert.yaml'
299304
- '!.pre-commit-config.yaml'
300305
- '!.shellcheckrc'
306+
- '!.yamllint.yaml'
301307
- '!CODEOWNERS'
302308
- '!Dockerfile'
303309
- '!README.md'
@@ -340,6 +346,7 @@ jobs:
340346
- '!.github/workflows/trigger-breaking-change-alert.yaml'
341347
- '!.pre-commit-config.yaml'
342348
- '!.shellcheckrc'
349+
- '!.yamllint.yaml'
343350
- '!CODEOWNERS'
344351
- '!Dockerfile'
345352
- '!README.md'

0 commit comments

Comments
 (0)