File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -199,16 +199,25 @@ jobs:
199
199
- name : Install conda-build
200
200
shell : cmd /C CALL {0}
201
201
# Needed to be able to run conda index
202
- run : conda install conda-build
203
- - name : Create conda channel
202
+ run : conda create -n index conda-build
203
+ - name : Create conda channel with the artifact bit
204
204
shell : cmd /C CALL {0}
205
205
run : |
206
206
echo ${{ env.workdir }}
207
207
mkdir ${{ env.workdir }}\channel\win-64
208
208
move ${{ env.PACKAGE_NAME }}-*.tar.bz2 ${{ env.workdir }}\channel\win-64
209
- conda index ${{ env.workdir }}/channel
209
+ conda activate index
210
+ conda list
211
+ conda index ${{ env.workdir }}\channel
212
+ echo %errorlevel%
213
+ dir ${{ env.workdir }}\channel\win-64
214
+ - name : Dump dpctl version info from created channel
215
+ shell : cmd /C CALL {0}
216
+ run : |
210
217
# Test channel
218
+ conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json
211
219
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
220
+ dir ${{ env.workdir }}
212
221
type ${{ env.workdir }}\ver.json
213
222
- name : Collect dependencies
214
223
shell : cmd /C CALL {0}
You can’t perform that action at this time.
0 commit comments