diff --git a/.gitea/workflows/build-nightlly.yml b/.gitea/workflows/build-nightlly.yml index 1b27c26..ffb55b7 100644 --- a/.gitea/workflows/build-nightlly.yml +++ b/.gitea/workflows/build-nightlly.yml @@ -17,11 +17,17 @@ jobs: - name: Install required dependencies run: | sudo apt update - sudo apt install -y binutils coreutils desktop-file-utils gtk-update-icon-cache fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools squashfs-tools strace util-linux zsync git zstd + sudo apt install -y binutils coreutils desktop-file-utils gtk-update-icon-cache fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools python3-build python3-venv squashfs-tools strace util-linux zsync git zstd adwaita-icon-theme - - name: Install tools + - name: Install appimage-builder + run: | + git clone https://github.com/Boria138/appimage-builder + cd appimage-builder + python3 -m build --no-isolation + pip3 install --ignore-installed --user --break-system-packages . + + - name: Install uv run: | - pip3 install git+https://github.com/Boria138/appimage-builder.git pip3 install uv - name: Build AppImage diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3a73adf..905e061 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -23,11 +23,17 @@ jobs: - name: Install required dependencies run: | sudo apt update - sudo apt install -y binutils coreutils desktop-file-utils gtk-update-icon-cache fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools squashfs-tools strace util-linux zsync git zstd + sudo apt install -y binutils coreutils desktop-file-utils gtk-update-icon-cache fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools python3-build python3-venv squashfs-tools strace util-linux zsync git zstd adwaita-icon-theme - - name: Install tools + - name: Install appimage-builder + run: | + git clone https://github.com/Boria138/appimage-builder + cd appimage-builder + python3 -m build --no-isolation + pip3 install --ignore-installed --user --break-system-packages . + + - name: Install uv run: | - pip3 install git+https://github.com/Boria138/appimage-builder.git pip3 install uv - name: Build AppImage