-
-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more windows extension and add selection of type of broken files (#…
…749) * Add more windows extension * ABCD * Windows CI and basic choosing broken files * Core and GUI support for few
- Loading branch information
Showing
13 changed files
with
343 additions
and
563 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: 🏁 Windows | ||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * 2' | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
container: | ||
runs-on: ubuntu-22.04 | ||
container: | ||
image: ghcr.io/piegamesde/gtk4-cross:gtk-4.6 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install additional dependencies | ||
# gio is for the build script | ||
run: dnf install wget2 unzip mingw64-bzip2.noarch mingw64-poppler mingw64-poppler-glib mingw32-python3 rust-gio-devel adwaita-icon-theme -y && dnf clean all -y | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
target: x86_64-pc-windows-gnu | ||
- name: Cache ~/.cargo | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.cargo | ||
key: windows-dotcargo | ||
- name: Cache cargo build | ||
uses: actions/cache@v1 | ||
with: | ||
path: target | ||
key: windows-build-target | ||
- name: Cross compile for Windows | ||
run: | | ||
#!/bin/bash | ||
set -euo pipefail | ||
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/share/pkgconfig:$MINGW_PREFIX/lib/pkgconfig/:/usr/x86_64-w64-mingw32/lib/pkgconfig/ | ||
cargo build --target=x86_64-pc-windows-gnu --release --locked | ||
mkdir -p package | ||
cp target/x86_64-pc-windows-gnu/release/czkawka_gui.exe package/ | ||
cp target/x86_64-pc-windows-gnu/release/czkawka_cli.exe package/ | ||
- name: Package | ||
run: | | ||
#!/bin/bash | ||
set -euo pipefail | ||
cp -t package $(pds -vv -f package/*.exe) | ||
# Add gdbus which is recommended on Windows (why?) | ||
cp $MINGW_PREFIX/bin/gdbus.exe package | ||
# Handle the glib schema compilation as well | ||
glib-compile-schemas $MINGW_PREFIX/share/glib-2.0/schemas/ | ||
mkdir -p package/share/glib-2.0/schemas/ | ||
cp -T $MINGW_PREFIX/share/glib-2.0/schemas/gschemas.compiled package/share/glib-2.0/schemas/gschemas.compiled | ||
# Pixbuf stuff, in order to get SVGs (scalable icons) to load | ||
mkdir -p package/lib/gdk-pixbuf-2.0 | ||
cp -rT $MINGW_PREFIX/lib/gdk-pixbuf-2.0 package/lib/gdk-pixbuf-2.0 | ||
cp -f -t package $(pds -vv -f $MINGW_PREFIX/lib/gdk-pixbuf-2.0/2.10.0/loaders/*) | ||
find package -iname "*.dll" -or -iname "*.exe" -type f -exec mingw-strip {} + | ||
cd package/share | ||
wget2 https://github.com/qarmin/czkawka/files/8880216/gtk4_theme.zip | ||
unzip gtk4_theme.zip | ||
rm gtk4_theme.zip | ||
cd ../.. | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: czkawka-windows-${{ github.sha }} | ||
path: | | ||
./package | ||
if-no-files-found: error |
Oops, something went wrong.