@@ -173,35 +173,35 @@ jobs:
173
173
# name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
174
174
# path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl
175
175
# if-no-files-found: error
176
-
177
- # upload-artifact's "overwrite: true" option has a race condition among parallel
178
- # jobs, so we let job 0 do the work
179
- - name : Build and check cuda-python wheel
180
- if : ${{ strategy.job-index == 0 }}
181
- run : |
182
- pushd cuda_python
183
- pip wheel -v --no-deps .
184
- twine check *.whl
185
- popd
186
-
187
- - name : List the cuda-python artifacts directory
188
- if : ${{ strategy.job-index == 0 }}
189
- run : |
190
- if [[ "${{ matrix.host-platform }}" == win* ]]; then
191
- export CHOWN=chown
192
- else
193
- export CHOWN="sudo chown"
194
- fi
195
- $CHOWN -R $(whoami) cuda_python/*.whl
196
- ls -lahR cuda_python
197
-
198
- - name : Upload cuda-python build artifacts
199
- if : ${{ strategy.job-index == 0 }}
200
- uses : actions/upload-artifact@v4
201
- with :
202
- name : cuda-python-wheel
203
- path : cuda_python/*.whl
204
- if-no-files-found : error
176
+ #
177
+ # # upload-artifact's "overwrite: true" option has a race condition among parallel
178
+ # # jobs, so we let job 0 do the work
179
+ # - name: Build and check cuda-python wheel
180
+ # if: ${{ strategy.job-index == 0 }}
181
+ # run: |
182
+ # pushd cuda_python
183
+ # pip wheel -v --no-deps .
184
+ # twine check *.whl
185
+ # popd
186
+ #
187
+ # - name: List the cuda-python artifacts directory
188
+ # if: ${{ strategy.job-index == 0 }}
189
+ # run: |
190
+ # if [[ "${{ matrix.host-platform }}" == win* ]]; then
191
+ # export CHOWN=chown
192
+ # else
193
+ # export CHOWN="sudo chown"
194
+ # fi
195
+ # $CHOWN -R $(whoami) cuda_python/*.whl
196
+ # ls -lahR cuda_python
197
+ #
198
+ # - name: Upload cuda-python build artifacts
199
+ # if: ${{ strategy.job-index == 0 }}
200
+ # uses: actions/upload-artifact@v4
201
+ # with:
202
+ # name: cuda-python-wheel
203
+ # path: cuda_python/*.whl
204
+ # if-no-files-found: error
205
205
206
206
- name : Pass environment variables to the next runner
207
207
id : pass_env
0 commit comments