From a07a522cf3760031e43bbac986e377c4bd5fa422 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sun, 13 Feb 2022 21:08:10 +0100 Subject: [PATCH] Fixed the app image extraction --- .woodpecker.yml | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6a1ab22..cf7c4fe 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,12 +1,34 @@ pipeline: build: image: rust:bullseye + commands: + - apt update && apt install -y libgtk-3-dev libxcb-shape0-dev + libxcb-xfixes0-dev + - cargo build --release + + build_appimage: + image: rust:bullseye + group: build_release_files commands: - apt update && apt install -y libgtk-3-dev libxcb-shape0-dev libxcb-xfixes0-dev python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace fuse - - wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool - - chmod +x /usr/local/bin/appimagetool + # Install appimage tool + - (cd /tmp/ && + wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage && + chmod +x appimagetool-x86_64.AppImage && + ./appimagetool-x86_64.AppImage --appimage-extract && + cp -avr squashfs-root/usr/* /usr/) + - export CARGO_HOME=/root/.cargo - cargo install cargo-appimage - - cargo build + # Build appimage - cargo appimage + + build_windows: + image: rust:bullseye + group: build_release_files + commands: + - apt update && apt install -y mingw-w64 + - rustup target add x86_64-pc-windows-gnu + - rustup toolchain install stable-x86_64-pc-windows-gnu + - cargo build --target x86_64-pc-windows-gnu