aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-06-04 23:26:02 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-06-04 23:36:37 +0300
commit7c182a05d8127e184dca239073569297f2618b8b (patch)
treeac2006e4935231d8fa0c0f49efb9ebf027d9a5be
parentbf4ce2f28a5d4cc3f1f4a7a1d2450e6893ff5d7b (diff)
downloadsciteco-7c182a05d8127e184dca239073569297f2618b8b.tar.gz
CI: test only on win64 as mingw-w64-i686-pdcurses was apparently dropped from MSYS
Ther rest of mingw32 still appears to exist, though.
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2f2b8f0..2c9192a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -95,14 +95,14 @@ jobs:
- name: Build Source Tarball
run: make dist
- win32:
+ win64:
runs-on: windows-latest
defaults:
run:
shell: bash.exe --login -eo pipefail "{0}"
env:
- MSYSTEM: MINGW32
+ MSYSTEM: MINGW64
CHERE_INVOKING: 1
steps:
@@ -119,13 +119,13 @@ jobs:
- name: Install Build Dependencies
run: >
pacman -S --noconfirm --needed
- base-devel mingw-w64-i686-autotools mingw-w64-i686-toolchain
- mingw-w64-i686-glib2 mingw-w64-i686-pdcurses
- groff mingw-w64-i686-doxygen
+ base-devel mingw-w64-x86_64-autotools mingw-w64-x86_64-toolchain
+ mingw-w64-x86_64-glib2 mingw-w64-x86_64-pdcurses
+ groff mingw-w64-x86_64-doxygen
- name: Configure Build
env:
- PDCURSES_CFLAGS: -I/mingw32/include/pdcurses/
+ PDCURSES_CFLAGS: -I/mingw64/include/pdcurses/
run: |
autoreconf -i
./configure --with-interface=pdcurses-gui --enable-debug --enable-html-docs
@@ -141,7 +141,7 @@ jobs:
- name: make distcheck
env:
DISTCHECK_CONFIGURE_FLAGS: --with-interface=pdcurses-gui
- PDCURSES_CFLAGS: -I/mingw32/include/pdcurses/
+ PDCURSES_CFLAGS: -I/mingw64/include/pdcurses/
run: make distcheck
- name: Build Source Tarball
run: make dist