File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -87,24 +87,20 @@ jobs:
87
87
dependent_exes: "gcc jq wget"
88
88
89
89
- name: Download cuda-python build artifacts
90
+ if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
90
91
uses: actions/download-artifact@v4
91
92
with:
92
93
name: cuda-python-wheel
93
94
path: .
94
95
95
- - name: Display structure of downloaded cuda-python artifacts
96
- run: |
97
- pwd
98
- ls -lahR .
99
-
100
96
- name: Download cuda.bindings build artifacts
101
97
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
102
98
uses: actions/download-artifact@v4
103
99
with:
104
100
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
105
101
path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
106
102
107
- - name: Download cuda.bindings build artifacts from the prior branch
103
+ - name: Download cuda-python & cuda .bindings build artifacts from the prior branch
108
104
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '1'}}
109
105
env:
110
106
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -131,6 +127,14 @@ jobs:
131
127
mkdir -p "${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}"
132
128
mv $OLD_BASENAME/*.whl "${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}"/
133
129
130
+ gh run download $LATEST_PRIOR_RUN_ID -p cuda-python-wheel -R NVIDIA/cuda-python
131
+ mv cuda-python-wheel/*.whl .
132
+
133
+ - name: Display structure of downloaded cuda-python artifacts
134
+ run: |
135
+ pwd
136
+ ls -lahR .
137
+
134
138
- name: Display structure of downloaded cuda.bindings artifacts
135
139
run: |
136
140
pwd
You can’t perform that action at this time.
0 commit comments