Skip to content

Commit 10a4dcc

Browse files
committed
Add some path logging
1 parent d05c37f commit 10a4dcc

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.ci/utils/cache.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,22 @@ steps:
1111
cacheHitVar: CACHE_RESTORED
1212
displayName: '[Cache] esy packages'
1313

14+
- script: |
15+
echo $(ESY__CACHE_INSTALL_PATH)
16+
echo $(CACHE_FOLDER)
17+
ls $(CACHE_FOLDER)
18+
1419
- script: 'mkdir -p $(ESY__CACHE_INSTALL_PATH)'
1520
condition: eq(variables.CACHE_RESTORED, 'true')
1621
displayName: '[Cache][Restore] Create esy cache directory'
1722

23+
- script: |
24+
ls $(ESY__CACHE_INSTALL_PATH)
25+
ls $(CACHE_FOLDER)
26+
1827
- pwsh: Move-Item -Path $(CACHE_FOLDER) -Destination $(ESY__CACHE_INSTALL_PATH)
1928
displayName: '[Cache][Restore] Move downloaded cache in place'
2029
condition: eq(variables.CACHE_RESTORED, 'true')
30+
31+
- script: |
32+
ls $(ESY__CACHE_INSTALL_PATH)

.ci/utils/prepare-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
steps:
22

33
- pwsh: Move-Item -Path $(ESY__CACHE_INSTALL_PATH) -Destination $(CACHE_FOLDER)
4-
displayName: '[Cache][Publish] Move builds to becached'
4+
displayName: '[Cache][Publish] Move builds to be cached'

0 commit comments

Comments
 (0)