File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -207,11 +207,12 @@ jobs:
207
207
shell : cmd /C CALL {0}
208
208
run : conda index ${{ env.workdir }}\channel
209
209
210
- - name : Dump dpctl version info from created channel
210
+ - name : Dump dpctl version info from created channel into ver.json
211
211
shell : cmd /C CALL {0}
212
212
run : |
213
213
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
214
- type ${{ env.workdir }}\ver.json
214
+ - name : Output content of produced ver.json
215
+ run : Get-Content -Path ${{ env.workdir }}\ver.json
215
216
- name : Collect dependencies
216
217
shell : cmd /C CALL {0}
217
218
run : |
@@ -224,10 +225,7 @@ jobs:
224
225
)
225
226
conda install ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }} --only-deps --dry-run > lockfile
226
227
- name : Display lockfile content
227
- shell : cmd /C CALL {0}
228
- run : |
229
- echo "Outputting content of lockfile:"
230
- type lockfile
228
+ run : Get-Content -Path .\lockfile
231
229
- name : Cache conda packages
232
230
uses : actions/cache@v3
233
231
env :
You can’t perform that action at this time.
0 commit comments