From 3489e6e0eb28ec1d05aaaf8ee936ee18b325e92d Mon Sep 17 00:00:00 2001 From: "Alejandro R. Mosteo" Date: Tue, 23 Jul 2024 23:13:14 +0200 Subject: [PATCH] Add objdump and ldd --- .github/workflows/ci-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index a98451e56..b5f6dea14 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -52,5 +52,8 @@ jobs: run: ./bin/alr version - name: Display built alr (III) - run: ls -alF ./bin && file ./bin/alr.exe && ./bin/alr.exe version + run: | + file ./bin/alr.exe + objdump -x ./bin/alr.exe | head -n 20 + ldd ./bin/alr.exe shell: bash \ No newline at end of file