From 77bbcbc5a57b192043c1ebb7e61f3cd2eee50809 Mon Sep 17 00:00:00 2001 From: Peter Heywood Date: Tue, 2 Apr 2024 16:32:45 +0100 Subject: [PATCH] Run readelf -d on _pyflamegpu.so to check for differences between ubuntu and centos --- .github/workflows/Manylinux2014.yml | 6 ++++++ .github/workflows/Ubuntu.yml | 5 +++++ 2 files changed, 11 insertions(+) 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 }}