Skip to content

Commit dc633dc

Browse files
committed
skip
1 parent 2bb32a9 commit dc633dc

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.github/workflows/build-and-test.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -173,35 +173,35 @@ jobs:
173173
# name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
174174
# path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl
175175
# 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
205205

206206
- name: Pass environment variables to the next runner
207207
id: pass_env

0 commit comments

Comments
 (0)