File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -220,14 +220,20 @@ jobs:
220
220
221
221
with :
222
222
fetch-depth : 0
223
+ - name : Location of working directory
224
+ working-directory : ${{ github.workspace }}
225
+ run : pwd
223
226
- name : List directory of checkout
227
+ working-directory : ${{ github.workspace }}
224
228
run : ls -l dpctl
225
229
- name : Create test temp dir
226
230
# create temporary empty folder to runs tests from
227
231
# https://github.com/pytest-dev/pytest/issues/11904
228
232
run : mkdir -p ${GITHUB_WORKSPACE}/test_tmp
229
233
- name : Create symbolic link to checked-out tests folder
230
- run : ln -s ${GITHUB_WORKSPACE}/dpctl/dpctl/tests/ ${GITHUB_WORKSPACE}/test_tmp/dpctl_tests
234
+ run : ln -s ${GITHUB_WORKSPACE}/dpctl/tests/ ${GITHUB_WORKSPACE}/test_tmp/dpctl_tests
235
+ - name : List content of symbolic directory
236
+ run : ls -l ${GITHUB_WORKSPACE}/test_tmp/dpctl_tests
231
237
- name : List directory of temp_tmp
232
238
working-directory : ${{ github.workspace }}/test_tmp
233
239
run : ls -l
@@ -406,7 +412,7 @@ jobs:
406
412
- name : Copy tests from checkout
407
413
shell : cmd /C CALL {0}
408
414
run : >-
409
- xcopy /S "{{ env.workdir }}\dpctl \dpctl\tests" "${{ env.workdir }}\test_tmp"
415
+ xcopy /S /E "{{ env.workdir }}\dpctl\tests" "${{ env.workdir }}\test_tmp"
410
416
411
417
- name : List content of workdir folder
412
418
shell : cmd /C CALL {0}
You can’t perform that action at this time.
0 commit comments