File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 1010 secrets : inherit
1111
1212 macosx :
13+ needs : cache_libs
1314 runs-on : macos-latest
1415
1516 env :
@@ -25,15 +26,21 @@ jobs:
2526 steps :
2627 - uses : actions/checkout@v5.0.0
2728
29+ # - name: Ensure libs directory exists
30+ # run: mkdir -p libs
31+
2832 - name : Cache [libs]
33+ id : cache-libs
2934 uses : actions/cache/restore@v4.3.0
3035 with :
31- path : |
32- libs/*.xz
33- libs/*.gz
34- libs/*.zip
36+ # path: libs
3537 key : libs-${{ runner.os }}-${{ runner.arch }}-${{ env.LIBXML2_VERSION }}-${{ env.LIBXSLT_VERSION }}
3638
39+ - name : Log cache restore result
40+ run : |
41+ echo "libs cache hit: ${{ steps.cache-libs.outputs.cache-hit }}"
42+ ls -la libs
43+
3744 - uses : actions/setup-python@v4
3845 with :
3946 python-version : ${{ matrix.python }}
6067 ls -la
6168 echo "libs directory listing:"
6269 ls -la libs || true
70+ echo "../libs directory listing:"
71+ ls -la ../libs || true
6372 python -m build
6473 rm -rf build/
6574
You can’t perform that action at this time.
0 commit comments