Skip to content

Commit fda51a0

Browse files
committed
Install patchelf
1 parent c6bfcbd commit fda51a0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
- run: |
4141
mkdir -p ~/artifacts
4242
node -p "require('./package').version" > ~/artifacts/pkg-version
43-
43+
44+
- run: sudo apt-get update -qq
45+
- run: sudo apt-get install -qq patchelf
4446
- run: chmod +x src/qt-mkdir.sh && src/qt-mkdir.sh ~/qt_tmp
4547
- run: chmod +x src/qt-copy-linux.sh && src/qt-copy-linux.sh ~/qt_tmp ~/Qt/6.8.0/gcc_arm64
4648
- run: cd ~/qt_tmp && tar -czf ../aarch64.gz *

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ jobs:
8787
- name: Copy Qt Dir - Linux
8888
if: matrix.os == 'ubuntu-22.04'
8989
run: |
90+
sudo apt-get update -qq
91+
sudo apt-get install -qq patchelf
9092
echo "OS_NAME=linux" >> $GITHUB_ENV
9193
chmod +x src/qt-copy-linux.sh
9294
src/qt-copy-linux.sh ${{ env.QT_TMP }} ${{ github.workspace }}/../Qt/6.8.0/gcc_64

0 commit comments

Comments
 (0)