Skip to content

Commit b27d2ed

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

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/cache_libs.yml

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

127+
- name: List downloaded libs
128+
if: ${{ contains(matrix.os, 'windows-') }}
129+
run: |
130+
bash -c '
131+
echo "libs directory:"
132+
ls -la libs || true
133+
echo
134+
echo "Downloaded files:"
135+
find libs -maxdepth 1 -type f | sort || true
136+
'
137+
127138
- name: Check Windows library versions
128139
if: ${{ contains(matrix.os, 'windows-') }}
129140
run: |
@@ -132,3 +143,12 @@ jobs:
132143
[[ -f "$file" ]] || { echo "MISSING: $file" ; exit 1; }
133144
done
134145
'
146+
147+
- name: Check non-Windows library versions
148+
if: ${{ !contains(matrix.os, 'windows-') }}
149+
run: |
150+
bash -c '
151+
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
152+
[[ -f "$file" ]] || { echo "MISSING: $file" ; exit 1; }
153+
done
154+
'

0 commit comments

Comments
 (0)