Skip to content

feat: add windows package #79

feat: add windows package

feat: add windows package #79

Workflow file for this run

name: Windows GNU CI
on:
workflow_dispatch:
push:
branches:
- "win416"
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
build-release:
env:
RUST_BACKTRACE: full
strategy:
matrix:
include:
- arch: x86_64-windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
artifact: tsukimi.exe
runs-on: ${{matrix.os}}
steps:
- name: Checkout
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: actions/checkout@v4
- name: Setup msys2
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: msys2/setup-msys2@v2
with:
update: true
release: false
msystem: MINGW64
install: >-
mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-gcc
mingw-w64-x86_64-mpv
mingw-w64-x86_64-libadwaita
mingw-w64-x86_64-gstreamer
mingw-w64-x86_64-glib2
mingw-w64-x86_64-gst-plugins-base
mingw-w64-x86_64-gst-plugins-good
mingw-w64-x86_64-gst-plugins-bad
mingw-w64-x86_64-gst-plugins-ugly
mingw-w64-x86_64-gst-libav
- name: Build tsukimi-${{ matrix.target }}
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
shell: msys2 {0}
run: |
export PATH="/c/Users/runneradmin/.cargo/bin:$PATH"
rustup default stable-gnu
cargo build --release --locked
- name: Prepare Package
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
shell: msys2 {0}
run: |
mkdir artifact && cd artifact
mkdir tsukimi-windows-gnu-amd64/ && cd tsukimi-windows-gnu-amd64/ && mkdir bin/ && mkdir share/ && mkdir lib/
cp $GITHUB_WORKSPACE/target/release/${{ matrix.artifact }} bin/
cp /mingw64/bin/gdbus.exe bin/
cp -r /mingw64/lib/gdk-pixbuf-2.0 lib/
find lib/gdk-pixbuf-2.0/2.10.0/loaders -type f ! \( -name "*-svg.dll" -o -name "*-png.dll" -o -name "*-jpeg.dll" \) -exec rm -f "{}" \;
cp -r /mingw64/lib/gio lib/
cp -r /mingw64/lib/gstreamer-1.0 lib/ && find lib/gstreamer-1.0 -type f ! -name "*.dll" -exec rm -f "{}" \;
cp -r /mingw64/lib/clapper-0.0 lib/ && find lib/clapper-0.0 -type f ! -name "*.dll" -exec rm -f "{}" \;
cp -r /mingw64/share/glib-2.0 share/
find share/glib-2.0/* -maxdepth 0 -type d ! -name "*schemas*" -exec rm -rf "{}" \;
mv $GITHUB_WORKSPACE/moe.tsuna.tsukimi.gschema.xml share/glib-2.0/schemas/
glib-compile-schemas.exe share/glib-2.0/schemas/
find share/glib-2.0/ -type f ! -name "*.compiled" -exec rm -f "{}" \;
cp -r /mingw64/share/icons share/
cp $GITHUB_WORKSPACE/resources/ui/icons/tsukimi.png share/icons/
rm -rf share/icons/hicolor && rm -rf share/icons/AdwaitaLegacy && rm -rf share/icons/Adwaita/scalable && rm -rf share/icons/Adwaita/cursors
rm -rf share/icons/Adwaita/16x16 && rm -rf share/icons/Adwaita/symbolic-up-to-32
find . -type d -empty -delete
cd lib/gstreamer-1.0
rm -f \
libgstadpcmenc.dll libgstamfcodec.dll libgstdvbsubenc.dll libgstencoding.dll \
libgstfrei0r.dll libgstinter.dll libgstlame.dll libgstldac.dll libgstmpeg2enc.dll \
libgstmpegpsmux.dll libgstmpegtsmux.dll libgstmplex.dll libgstrealmedia.dll \
libgstsubenc.dll libgstsvtav1.dll libgstsvthevcenc.dll libgsttwolame.dll \
libgstvoamrwbenc.dll libgstwavenc.dll libgstx264.dll libgstx265.dll \
libgstxingmux.dll libgsty4menc.dll libgstzbar.dll
cd $GITHUB_WORKSPACE/artifact/tsukimi-windows-gnu-amd64
ldd bin/tsukimi.exe | grep '\/mingw64.*\.dll' -o | xargs -I{} cp -n "{}" bin/
find lib/ -type f -name "*.dll" -exec ldd "{}" \; | grep '\/mingw64.*\.dll' -o | xargs -I{} cp -n "{}" bin/
- name: Create NSIS installer
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
shell: powershell
run: |
cp tsukimi_installer.nsi artifact
makensis /V4 artifact/tsukimi_installer.nsi
rm artifact/tsukimi_installer.nsi
- name: Build Thin Package
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
shell: powershell
run: |
cd artifact/tsukimi-windows-gnu-amd64
7z.exe a ../tsukimi-${{matrix.arch}}.7z ./*
- name: Calculate Checksum
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
shell: msys2 {0}
run: |
cd artifact
sha512sum *.7z > tsukimi-7z.sha512sum
sha512sum *.7z > tsukimi.sha512sum
sha512sum *.exe >> tsukimi.sha512sum
- name: Upload artifact
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v4
with:
name: tsukimi-${{matrix.arch}}
path: |
artifact/*.exe
artifact/*.7z
artifact/*.sha512sum
compression-level: 0
retention-days: 3
if-no-files-found: error