Merge branch 'future-2024-11' into develop #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release-Linux | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: hydrus | |
- | |
name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
architecture: x64 | |
- | |
name: APT Install | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libmpv1 | |
- | |
name: Pip Install | |
run: python3 -m pip install -r hydrus/static/build_files/linux/requirements.txt | |
- | |
name: Build docs to /help | |
run: mkdocs build -d help | |
working-directory: hydrus | |
- | |
name: Build Hydrus | |
run: | | |
cp hydrus/static/build_files/linux/hydrus_client.spec hydrus_client.spec | |
cp hydrus/static/build_files/linux/hydrus_server.spec hydrus_server.spec | |
pyinstaller hydrus_server.spec | |
pyinstaller hydrus_client.spec | |
- | |
name: Remove Chonk | |
run: | | |
find dist/hydrus_client/ -type f -name "*.pyc" -delete | |
while read line; do find dist/hydrus_client/ -type f -name "${line}" -delete ; done < hydrus/static/build_files/linux/files_to_delete.txt | |
- | |
name: Remove Surplus File | |
run: | | |
rm -f dist/hydrus_client/libxkbcommon.so* | |
- | |
name: Set Permissions | |
run: | | |
sudo chown --recursive 1000:1000 dist/hydrus_client | |
sudo find dist/hydrus_client -type d -exec chmod 0755 {} \; | |
sudo chmod +x dist/hydrus_client/hydrus_client dist/hydrus_client/hydrus_server dist/hydrus_client/bin/swfrender_linux | |
- | |
name: Compress Client | |
run: | | |
mv dist/hydrus_client "dist/Hydrus Network" | |
tar --zstd -cvf Ubuntu-Extract.tar.zst -C dist "Hydrus Network" | |
- | |
name: Extract Version Metadata | |
id: meta | |
run: | | |
echo "version=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
echo "version_short=${GITHUB_REF##*/v}" >> $GITHUB_ENV | |
- | |
name: Rename Files | |
run: | | |
mv Ubuntu-Extract.tar.zst Hydrus.Network.${{ env.version_short }}.-.Linux.-.Executable.tar.zst | |
- | |
name: Upload Files | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
Hydrus.Network.${{ env.version_short }}.-.Linux.-.Executable.tar.zst |