Skip to content

Commit b846125

Browse files
committed
Add more logging for macos build
1 parent 3c0d944 commit b846125

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/macosx.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
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 }}
@@ -60,6 +67,8 @@ jobs:
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

0 commit comments

Comments
 (0)