diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-12-27 06:07:42 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-12-27 06:07:42 +0300 |
commit | 566a05dfbf916b83715ade4e52b1e302404fa69c (patch) | |
tree | cac0d0842182babe7d29456fa333d12b1ee790ea /.github/workflows/nightly.yml | |
parent | a2ef990a80130df8c4a6e043b354e7aa8f7172db (diff) | |
download | sciteco-566a05dfbf916b83715ade4e52b1e302404fa69c.tar.gz |
fixup: fixed installation of dependencies for win64-gtk
Diffstat (limited to '.github/workflows/nightly.yml')
-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 a2c9f97..0654e0d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -170,7 +170,7 @@ jobs: git commit -a -m "update ${{ github.sha }}" git push -u origin +HEAD:gh-pages - win32-curses: + win64-curses: runs-on: windows-2019 defaults: @@ -267,7 +267,7 @@ jobs: # However the Curses version may be linked statically, while Gtk+3 cannot be # linked statically on Windows (at least MSYS does not provide # static libraries) and would draw in libglib, libintl, libiconv etc. anyway. - win32-gtk: + win64-gtk: runs-on: windows-2019 defaults: @@ -291,8 +291,8 @@ jobs: - name: Install Build Dependencies run: > pacman -S --noconfirm --needed - base-devel mingw-x86_64-i686-autotools mingw-x86_64-i686-toolchain - mingw-x86_64-i686-glib2 mingw-x86_64-i686-gtk3 mingw-x86_64-i686-librsvg + base-devel mingw-w64-x86_64-autotools mingw-w64-x86_64-toolchain + mingw-w64-x86_64-glib2 mingw-w64-x86_64-gtk3 mingw-w64-x86_64-librsvg groff - name: Configure Build |