Skip to content

Commit

Permalink
feat: readelf iguana targets
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Nov 13, 2023
1 parent 0846da8 commit b82184a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ jobs:
- name: dump build log
if: always()
run: cat build-iguana/meson-logs/meson-log.txt
- name: readelf iguana
run: |
for obj in $(ls iguana/bin/*) $(find iguana -name "*.so") ; do
echo "[+++] READELF $obj"
readelf -d $obj
done
- run: tree iguana
- name: tar
run: tar czvf iguana{.tar.gz,}
Expand Down

0 comments on commit b82184a

Please sign in to comment.