Skip to content

Commit 88bc0ce

Browse files
committed
Reorder workflow logs to get more info
1 parent aac0cb0 commit 88bc0ce

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/linuxbrew.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,24 @@ jobs:
7272
pkg-config --modversion openssl || true
7373
python3 - <<'PY'
7474
import lxml.etree
75-
import xmlsec
7675
print('lxml.LIBXML_VERSION', lxml.etree.LIBXML_VERSION)
7776
print('lxml.LIBXML_COMPILED_VERSION', lxml.etree.LIBXML_COMPILED_VERSION)
7877
print('lxml.LIBXSLT_VERSION', lxml.etree.LIBXSLT_VERSION)
7978
print('lxml.LIBXSLT_COMPILED_VERSION', lxml.etree.LIBXSLT_COMPILED_VERSION)
80-
print('xmlsec.__file__', xmlsec.__file__)
81-
print('xmlsec.get_libxml_version()', xmlsec.get_libxml_version())
82-
print('xmlsec.get_libxml_compiled_version()', xmlsec.get_libxml_compiled_version())
83-
print('xmlsec.get_libxmlsec_version()', xmlsec.get_libxmlsec_version())
8479
print('lxml.etree.__file__', lxml.etree.__file__)
8580
PY
8681
ldd "$(python3 - <<'PY'
8782
import lxml.etree
8883
print(lxml.etree.__file__)
8984
PY
9085
)"
86+
python3 - <<'PY'
87+
import xmlsec
88+
print('xmlsec.__file__', xmlsec.__file__)
89+
print('xmlsec.get_libxml_version()', xmlsec.get_libxml_version())
90+
print('xmlsec.get_libxml_compiled_version()', xmlsec.get_libxml_compiled_version())
91+
print('xmlsec.get_libxmlsec_version()', xmlsec.get_libxmlsec_version())
92+
PY
9193
ldd "$(python3 - <<'PY'
9294
import xmlsec
9395
print(xmlsec.__file__)

0 commit comments

Comments
 (0)