File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff 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+ '
You can’t perform that action at this time.
0 commit comments