File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ jobs:
175
175
test_windows :
176
176
needs : build_windows
177
177
runs-on : ${{ matrix.runner }}
178
-
178
+ defaults :
179
+ run :
180
+ shell : cmd /C CALL {0}
179
181
strategy :
180
182
matrix :
181
183
python : ['3.8', '3.9', '3.10']
@@ -197,8 +199,7 @@ jobs:
197
199
auto-update-conda : true
198
200
conda-build-version : ' *'
199
201
miniconda-version : ' latest'
200
- auto-activate-base : true
201
- activate-environment : " dpctl_test"
202
+ activate-environment : dpctl_test
202
203
python-version : ${{ matrix.python }}
203
204
- name : Create conda channel with the artifact bit
204
205
shell : cmd /C CALL {0}
@@ -216,6 +217,7 @@ jobs:
216
217
run : |
217
218
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
218
219
- name : Output content of produced ver.json
220
+ shell : pwsh
219
221
run : Get-Content -Path ${{ env.workdir }}\ver.json
220
222
- name : Collect dependencies
221
223
shell : cmd /C CALL {0}
@@ -229,6 +231,7 @@ jobs:
229
231
)
230
232
conda install ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }} --only-deps --dry-run > lockfile
231
233
- name : Display lockfile content
234
+ shell : pwsh
232
235
run : Get-Content -Path .\lockfile
233
236
- name : Cache conda packages
234
237
uses : actions/cache@v3
You can’t perform that action at this time.
0 commit comments