Skip to content

Commit

Permalink
Check DLL dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Nov 5, 2024
1 parent 422eec9 commit 4c1bc81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ jobs:
ls -l api.dll
ls -l gui.dll
- name: Check DLL dependencies
shell: msys2 {0}
run: |
pacman -S --noconfirm mingw-w64-x86_64-binutils
objdump -p api.dll | grep "DLL Name" > dependencies_api.txt
objdump -p gui.dll | grep "DLL Name" > dependencies_gui.txt
cat dependencies_api.txt
cat dependencies_gui.txt
- name: Commit and push .dll file
run: |
git config --global user.name "Ethan Chan"
Expand Down

0 comments on commit 4c1bc81

Please sign in to comment.