diff --git a/.github/workflows/Manylinux2014.yml b/.github/workflows/Manylinux2014.yml index 59a7d3b51..98521cd16 100644 --- a/.github/workflows/Manylinux2014.yml +++ b/.github/workflows/Manylinux2014.yml @@ -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 }} diff --git a/.github/workflows/Ubuntu.yml b/.github/workflows/Ubuntu.yml index 646e33a6c..ac2cb235d 100644 --- a/.github/workflows/Ubuntu.yml +++ b/.github/workflows/Ubuntu.yml @@ -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 }}