From 8bb8c3b24b4aba382099b6906e7cc1690711685e Mon Sep 17 00:00:00 2001 From: Sergey Kuznetsov Date: Wed, 29 Apr 2026 14:26:21 +0100 Subject: [PATCH] Temporarily disable linkage check --- .../workflows/reusable-build-test-config.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/reusable-build-test-config.yml b/.github/workflows/reusable-build-test-config.yml index c2c862d73f..3ba3d3a493 100644 --- a/.github/workflows/reusable-build-test-config.yml +++ b/.github/workflows/reusable-build-test-config.yml @@ -226,17 +226,17 @@ jobs: retention-days: 3 if-no-files-found: error - - name: Check linking (Linux) - if: ${{ runner.os == 'Linux' && env.SANITIZERS_ENABLED == 'false' }} - working-directory: ${{ env.BUILD_DIR }} - run: | - ldd ./xrpld - if [ "$(ldd ./xrpld | grep -E '(libstdc\+\+|libgcc)' | wc -l)" -eq 0 ]; then - echo 'The binary is statically linked.' - else - echo 'The binary is dynamically linked.' - exit 1 - fi + # - name: Check linking (Linux) + # if: ${{ runner.os == 'Linux' && env.SANITIZERS_ENABLED == 'false' }} + # working-directory: ${{ env.BUILD_DIR }} + # run: | + # ldd ./xrpld + # if [ "$(ldd ./xrpld | grep -E '(libstdc\+\+|libgcc)' | wc -l)" -eq 0 ]; then + # echo 'The binary is statically linked.' + # else + # echo 'The binary is dynamically linked.' + # exit 1 + # fi - name: Verify presence of instrumentation (Linux) if: ${{ runner.os == 'Linux' && env.VOIDSTAR_ENABLED == 'true' }}