Skip to content

Commit 9f1a26b

Browse files
committed
Add libs list for debugging and add non-windows check
1 parent d3b0c0f commit 9f1a26b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/cache_libs.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ jobs:
124124
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
125125
run: python build_libs_xmlsec.py --download-only
126126

127+
- name: List downloaded libs
128+
run: |
129+
bash -c '
130+
echo "libs directory:"
131+
ls -la libs || true
132+
echo
133+
echo "Downloaded files:"
134+
find libs -maxdepth 1 -type f | sort || true
135+
'
136+
127137
- name: Check Windows library versions
128138
if: ${{ contains(matrix.os, 'windows-') }}
129139
run: |
@@ -132,3 +142,12 @@ jobs:
132142
[[ -f "$file" ]] || { echo "MISSING: $file" ; exit 1; }
133143
done
134144
'
145+
146+
- name: Check non-Windows library versions
147+
if: ${{ !contains(matrix.os, 'windows-') }}
148+
run: |
149+
bash -c '
150+
for file in libs/zlib-${{ inputs.LIBICONV_VERSION }}.*.zip libs/iconv-${{ inputs.LIBXML2_VERSION }}.*.zip libs/libxml2-${{ inputs.LIBXSLT_VERSION }}.*.zip libs/libxslt-${{ inputs.OPENSSL_VERSION }}.*.zip libs/libxslt-${{ inputs.XMLSEC1_VERSION }}.*.zip libs/libxslt-${{ inputs.ZLIB_VERSION }}.*.zip; do
151+
[[ -f "$file" ]] || { echo "MISSING: $file" ; exit 1; }
152+
done
153+
'

0 commit comments

Comments
 (0)