summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNaruhiko Nishino <naru123456789@gmail.com>2022-10-09 13:28:36 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-09 13:28:36 +0100
commitb7af5a044525b72ad607a8bf4fcfff9b9b7565df (patch)
tree6a5e1ae9a57046d07944a515ba5c5364b65979ec /.github
parent330d64d32cbb8ba7cdfe8dc0bedd4caff3bb01e8 (diff)
downloadvim-git-b7af5a044525b72ad607a8bf4fcfff9b9b7565df.tar.gz
patch 9.0.0704: CI runs "tiny" and "small" builds, which are the samev9.0.0704
Problem: CI runs "tiny" and "small" builds, which are the same. Solution: Remove the "small" build. (Naruhiko Nishino, closes #11315)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c9889498e..d92f6df21 100644
--- 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"