# HG changeset patch # User Bram Moolenaar # Date 1665318604 -7200 # Node ID 75eac6ecb2e249bb14c28ca1923ff7bde6f126cc # Parent f9cbd764fdbc1b990e65e5e5ae17b630a8e166a0 patch 9.0.0704: CI runs "tiny" and "small" builds, which are the same Commit: https://github.com/vim/vim/commit/b7af5a044525b72ad607a8bf4fcfff9b9b7565df Author: Naruhiko Nishino Date: Sun Oct 9 13:28:36 2022 +0100 patch 9.0.0704: CI runs "tiny" and "small" builds, which are the same Problem: CI runs "tiny" and "small" builds, which are the same. Solution: Remove the "small" build. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/11315) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - features: [tiny, small, normal, huge] + features: [tiny, normal, huge] compiler: [clang, gcc] extra: [none] include: @@ -125,7 +125,7 @@ jobs: echo "TMPDIR=${{ runner.temp }}" case "${{ matrix.features }}" in - tiny|small) + tiny) echo "TEST=testtiny" if ${{ contains(matrix.extra, 'nogui') }}; then echo "CONFOPT=--disable-gui" diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 704, +/**/ 703, /**/ 702,