Skip to content

Commit eeaf9c2

Browse files
committed
Make cuda-verion required, add missing copright/license
1 parent 2e811f3 commit eeaf9c2

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/build-wheel.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
# Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
on:
26
workflow_call:
37
inputs:
48
host-platform:
59
required: true
610
type: string
711
cuda-version:
12+
required: true
813
type: string
9-
default: "12.8.0"
1014

1115
defaults:
1216
run:
@@ -53,7 +57,7 @@ jobs:
5357

5458
- name: Set up MSVC
5559
if: ${{ startsWith(inputs.host-platform, 'win') }}
56-
uses: ilammy/msvc-dev-cmd@v1
60+
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
5761

5862
- name: Set environment variables
5963
run: |
@@ -83,7 +87,7 @@ jobs:
8387
env
8488
8589
- name: Build cuda.core wheel
86-
uses: pypa/cibuildwheel@v2.22.0
90+
uses: pypa/cibuildwheel@faf86a6ed7efa889faf6996aa23820831055001a # v2.23.3
8791
env:
8892
CIBW_BUILD: ${{ env.CIBW_BUILD }}
8993
CIBW_ARCHS_LINUX: "native"
@@ -122,7 +126,7 @@ jobs:
122126
cuda-version: ${{ inputs.cuda-version }}
123127

124128
- name: Build cuda.bindings wheel
125-
uses: pypa/cibuildwheel@v2.22.0
129+
uses: pypa/cibuildwheel@faf86a6ed7efa889faf6996aa23820831055001a # v2.23.3
126130
env:
127131
CIBW_BUILD: ${{ env.CIBW_BUILD }}
128132
CIBW_ARCHS_LINUX: "native"

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# Note: This name is referred to in the test job, so make sure any changes are sync'd up!
26
# Further this is referencing a run in the backport branch to fetch old bindings.
37
name: "CI"

0 commit comments

Comments
 (0)