From: Foxe Chen Date: Wed, 26 Nov 2025 20:06:03 +0000 (+0000) Subject: CI: retire socketserver runner X-Git-Tag: v9.1.1929~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef8588f8ea533db6f9639fbff5738af8f185ea72;p=thirdparty%2Fvim.git CI: retire socketserver runner closes: #18811 Signed-off-by: Foxe Chen Signed-off-by: Christian Brabandt --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cf1b4f306..05185497c6 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"