Skip to content

Commit

Permalink
Fixed missing lzma on 8.0.3 (#8245)
Browse files Browse the repository at this point in the history
  • Loading branch information
qstokkink authored Nov 4, 2024
2 parents 6323030 + 833254a commit 9c42b77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,13 @@ jobs:
run: |
sudo apt-get install -y --allow-downgrades alien cpio=2.13+dfsg-7 devscripts fakeroot gir1.2-gtk-4.0 libgirepository1.0-dev rpm
./build/debian/makedist_debian.sh
mv build/debian/tribler_${GITHUB_TAG}_all.deb build/debian/tribler_${GITHUB_TAG}_${{ matrix.architecture }}.deb
cd build/debian
sudo apt-get install -y --fix-broken ./tribler_${GITHUB_TAG}_all.deb
timeout 10s tribler -s || true
cat /tmp/*tribler*.log
mv tribler_${GITHUB_TAG}_all.deb tribler_${GITHUB_TAG}_${{ matrix.architecture }}.deb
- name: Build Executables (Ubuntu aarch64)
if: matrix.os == 'ubuntu-latest' && matrix.architecture == 'aarch64'
Expand All @@ -143,7 +149,6 @@ jobs:
python3 -m pip install meson ninja
cd /tribler
python3 -m pip install --upgrade cx_Freeze==7.2.3 # cx_Freeze workaround
cp /lib/${{ matrix.architecture }}-linux-gnu/libcrypt.so.1 libcrypt-06cd74a6.so.2 # cx_Freeze workaround
export PATH="/usr/local/bin:$PATH"
./build/debian/makedist_debian.sh
Expand Down
2 changes: 1 addition & 1 deletion build/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../requirements.txt

cx_Freeze; sys_platform != 'darwin'
cx_Freeze==7.2.3; sys_platform != 'darwin'
PyInstaller; sys_platform == 'darwin'

setuptools
Expand Down

0 comments on commit 9c42b77

Please sign in to comment.