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