diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-08-23 05:15:18 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-08-23 05:15:18 +0200 |
commit | 0f1d48076cafc50d2018b98edbdc112669058a2f (patch) | |
tree | 0894c506ecc098480c16796b25438d81cbed98a5 | |
parent | 1e696506e8bae811ba42253da2391380f921a4c3 (diff) | |
download | sciteco-0f1d48076cafc50d2018b98edbdc112669058a2f.tar.gz |
hopefully fixed the Windows CI tests
* `make distcheck` will try to build against libncurses, which is not installed.
Therefore, I set DISTCHECK_CONFIGURE_FLAGS in order to force it to PDCurses.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b31bc45..c0c995d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,6 +131,7 @@ jobs: run: make check TESTSUITEFLAGS="--verbose" - name: Build Developer Documentation run: cd doc && make devdoc - - run: make distcheck + - name: make distcheck + run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-interface=pdcurses-gui" - name: Build Source Tarball run: make dist |