From 3c1e20f015388020d35966a5f6dd5f58c0c15691 Mon Sep 17 00:00:00 2001 From: craftablescience Date: Wed, 26 Jun 2024 21:20:23 -0400 Subject: [PATCH] fix(ci): don't fixup binaries on linux, we don't copy the qt binaries anymore --- .github/workflows/build.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dffe13b..6e08fca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,7 +76,7 @@ jobs: submodules: recursive - name: Install Necessary Packages - run: sudo apt update && sudo apt install -y cmake build-essential ninja-build chrpath + run: sudo apt update && sudo apt install -y cmake build-essential ninja-build - name: Install GCC [compiler:gcc] if: ${{matrix.compiler == 'gcc'}} @@ -104,20 +104,6 @@ jobs: working-directory: '${{env.BUILD_DIR}}' run: cmake --build . --config ${{matrix.build_type}} -t SDKLauncher -- -j$(nproc) - - name: Fixup Binaries - run: | - chmod +x '${{env.BUILD_DIR}}/SDKLauncher' - - # runpath cleanup for the Qt binaries. These are (mostly) wrong, leading to crashes - for f in ${{env.BUILD_DIR}}/*.so*; do - echo "Fixing $f..." - chrpath -r '$ORIGIN' "$f" - done - for f in ${{env.BUILD_DIR}}/*/*.so*; do - echo "Fixing $f..." - chrpath -r '$ORIGIN/..' "$f" - done - - name: Upload SDK Launcher uses: actions/upload-artifact@v4 with: