File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -249,13 +249,16 @@ jobs:
249
249
shell : pwsh
250
250
run : |
251
251
echo "CHANNELS=-c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels" >> $env:GITHUB_ENV
252
+
252
253
- name : Display channels line
253
254
run : |
254
255
echo ${{ env.CHANNELS }}
256
+
255
257
- name : Download artifact
256
258
uses : actions/download-artifact@v4
257
259
with :
258
260
name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
261
+
259
262
- uses : conda-incubator/setup-miniconda@v3
260
263
with :
261
264
miniforge-variant : Miniforge3
@@ -272,6 +275,7 @@ jobs:
272
275
- name : Create conda channel with the artifact bit
273
276
shell : cmd /C CALL {0}
274
277
run : |
278
+ @echo on
275
279
echo ${{ env.workdir }}
276
280
mkdir ${{ env.workdir }}\channel\win-64
277
281
move ${{ env.PACKAGE_NAME }}-*.tar.bz2 ${{ env.workdir }}\channel\win-64
@@ -280,12 +284,15 @@ jobs:
280
284
- name : Index the channel
281
285
shell : cmd /C CALL {0}
282
286
run : |
287
+ @echo on
283
288
conda activate
284
289
conda index ${{ env.workdir }}\channel
285
290
286
291
- name : Dump dpctl version info from created channel into ver.json
287
292
shell : cmd /C CALL {0}
288
293
run : |
294
+ @echo on
295
+ conda activate
289
296
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
290
297
291
298
- name : Output content of produced ver.json
You can’t perform that action at this time.
0 commit comments