Skip to content

Commit c1e476f

Browse files
[CI] Print the dll's metadata in fast build, to check correctness
1 parent 90a77db commit c1e476f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/fast.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,11 @@ jobs:
141141
if: matrix.os == 'windows-latest'
142142
run: ${{github.workspace}}/.github/scripts/check_dll_flags.ps1 ${{env.BUILD_DIR}}/src/proxy_lib/Release/umf_proxy.dll
143143
shell: pwsh
144+
145+
# TODO: We could add some script to verify metadata of dll's (selected fields, perhaps)
146+
# ref. https://superuser.com/questions/381276/what-are-some-nice-command-line-ways-to-inspect-dll-exe-details
147+
- name: Print metadata of our dll's
148+
if: matrix.os == 'windows-latest'
149+
run: |
150+
get-command ${{github.workspace}}/build/bin/Release/umf.dll | format-list
151+
get-command ${{github.workspace}}/build/src/proxy_lib/Release/umf_proxy.dll | format-list

0 commit comments

Comments
 (0)