Skip to content

Commit e069ebe

Browse files
committed
Dont read libxml2 version from system
1 parent bcfe41d commit e069ebe

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/macosx.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v5.0.0
2828

29-
# - name: Ensure libs directory exists
30-
# run: mkdir -p libs
31-
3229
- name: Cache [libs]
3330
id: cache-libs
3431
uses: actions/cache/restore@v4.3.0
@@ -39,11 +36,6 @@ jobs:
3936
libs/*.zip
4037
key: libs-${{ runner.os }}-${{ runner.arch }}-${{ env.LIBXML2_VERSION }}-${{ env.LIBXSLT_VERSION }}
4138

42-
- name: Log cache restore result
43-
run: |
44-
echo "libs cache hit: ${{ steps.cache-libs.outputs.cache-hit }}"
45-
ls -la libs
46-
4739
- uses: actions/setup-python@v4
4840
with:
4941
python-version: ${{ matrix.python }}
@@ -62,16 +54,12 @@ jobs:
6254
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6355
run: |
6456
export PKG_CONFIG_PATH="$(brew --prefix)/opt/libxml2/lib/pkgconfig"
65-
export PYXMLSEC_LIBXML2_VERSION="$(pkg-config --modversion libxml-2.0)"
57+
# export PYXMLSEC_LIBXML2_VERSION="$(pkg-config --modversion libxml-2.0)"
6658
echo "PKG_CONFIG_PATH=${PKG_CONFIG_PATH}"
6759
echo "libxml2 version from pkg-config: $(pkg-config --modversion libxml-2.0)"
6860
echo "Working directory: $(pwd)"
69-
echo "Repository root listing:"
70-
ls -la
7161
echo "libs directory listing:"
7262
ls -la libs || true
73-
echo "../libs directory listing:"
74-
ls -la ../libs || true
7563
python -m build
7664
rm -rf build/
7765

0 commit comments

Comments
 (0)