CI: retire socketserver runner
Commit:
https://github.com/vim/vim/commit/ef8588f8ea533db6f9639fbff5738af8f185ea72
Author: Foxe Chen <
chen...@gmail.com>
Date: Wed Nov 26 20:06:03 2025 +0000
CI: retire socketserver runner
closes:
https://github.com/vim/vim/issues/18811
Signed-off-by: Foxe Chen <
chen...@gmail.com>
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9cf1b4f30..05185497c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -87,10 +87,7 @@ jobs:
extra: [vimtags, proto]
- features: huge
compiler: gcc
- extra: [no_x11]
- - features: huge
- compiler: gcc
- extra: [socketserver]
+ extra: [no_x11_wl]
steps:
- name: Checkout repository from github
@@ -245,11 +242,8 @@ jobs:
;;
esac
- if ${{ contains(matrix.extra, 'no_x11') }}; then
- CONFOPT="${CONFOPT} --without-x --disable-gui"
- fi
- if ${{ contains(matrix.extra, 'socketserver') }}; then
- CONFOPT="${CONFOPT} --enable-socketserver"
+ if ${{ contains(matrix.extra, 'no_x11_wl') }}; then
+ CONFOPT="${CONFOPT} --without-x --disable-gui --without-wayland --enable-socketserver"
fi
if ${{ matrix.coverage == true }}; then
CFLAGS="${CFLAGS} --coverage -DUSE_GCOV_FLUSH"