diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-25 14:47:24 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-25 14:50:14 +0300 |
commit | 5a6862bba8eed7fc1f74592b88f677e22ed86f25 (patch) | |
tree | aef0e1469e99f7641639807e829f8d3ef0a852ac | |
parent | 0f740ee2f3d750fc5c25e20492f381a21ed53fa4 (diff) | |
download | sciteco-5a6862bba8eed7fc1f74592b88f677e22ed86f25.tar.gz |
hopefully fixed win32-gtk nightly builds: explicitly draw in librsvg and pixbuf loader file name changed
-rw-r--r-- | .github/workflows/nightly.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 21871af..e99f96c 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -288,7 +288,7 @@ jobs: run: > pacman -S --noconfirm --needed base-devel mingw-w64-i686-autotools mingw-w64-i686-toolchain - mingw-w64-i686-glib2 mingw-w64-i686-gtk3 + mingw-w64-i686-glib2 mingw-w64-i686-gtk3 mingw-w64-i686-librsvg groff - name: Configure Build @@ -341,11 +341,11 @@ jobs: # FIXME: It's possible to change the location of loaders.cache via $GDK_PIXBUF_MODULE_FILE. # If we did that, we could avoid "reusing" the lib/ directory. # This is important when somebody changes $SCITECOPATH. - cp /mingw32/lib/gdk-pixbuf-2.0/2.10.0/loaders/{libpixbufloader-svg.dll,libpixbufloader-png.dll} . + cp /mingw32/lib/gdk-pixbuf-2.0/2.10.0/loaders/{pixbufloader_svg.dll,libpixbufloader-png.dll} . # Collect DLLs for all pixbuf loaders into the root directory - for f in libpixbufloader-*.dll; do ../contrib/mingw-bundledlls --copy $f; done + for f in *pixbufloader*.dll; do ../contrib/mingw-bundledlls --copy $f; done mkdir -p lib/gdk-pixbuf-2.0/2.10.0/loaders/ - mv libpixbufloader-*.dll lib/gdk-pixbuf-2.0/2.10.0/loaders/ + mv *pixbufloader*.dll lib/gdk-pixbuf-2.0/2.10.0/loaders/ cp ../win32/loaders.cache lib/gdk-pixbuf-2.0/2.10.0/ zip -9 -r ../sciteco-gtk3_nightly_win32.zip . - name: Archive Windows Distribution (GTK+ 3) |