Skip to content

Commit

Permalink
Run readelf -d on _pyflamegpu.so to check for differences between ubu…
Browse files Browse the repository at this point in the history
…ntu and centos
  • Loading branch information
ptheywood committed Apr 2, 2024
1 parent b0ec5f3 commit 77bbcbc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/Manylinux2014.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ jobs:
working-directory: ${{ env.BUILD_DIR }}
run: cmake --build . --target pyflamegpu --verbose -j `nproc`

- name: readelf
if: ${{ env.FLAMEGPU_BUILD_PYTHON == 'ON' }}
working-directory: ${{ env.BUILD_DIR }}
run: find . -name "_pyflamegpu.so" | head -n 1 | xargs readelf -d


# Run audithweel show for information, but do not repair.
- name: Run auditwheel show
working-directory: ${{ env.BUILD_DIR }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ jobs:
working-directory: ${{ env.BUILD_DIR }}
run: cmake --build . --target pyflamegpu --verbose -j `nproc`

- name: readelf
if: ${{ env.FLAMEGPU_BUILD_PYTHON == 'ON' }}
working-directory: ${{ env.BUILD_DIR }}
run: find . -name "_pyflamegpu.so" | head -n 1 | xargs readelf -d

- name: Build tests
if: ${{ env.FLAMEGPU_BUILD_TESTS == 'ON' }}
working-directory: ${{ env.BUILD_DIR }}
Expand Down

0 comments on commit 77bbcbc

Please sign in to comment.