# HG changeset patch # User Bram Moolenaar # Date 1642195803 -3600 # Node ID e64dd04039630c168608385e62a7c1a73d37b847 # Parent 5e68a01e7d02faa373d07cc63b7f1072c63ba037 patch 8.2.4092: MacOS CI: unnecessarily doing "Install packages" Commit: https://github.com/vim/vim/commit/ece07639f4989a300276d66b13553c21a7435030 Author: ichizok Date: Fri Jan 14 21:28:59 2022 +0000 patch 8.2.4092: MacOS CI: unnecessarily doing "Install packages" Problem: MacOS CI: unnecessarily doing "Install packages". Solution: Only do "Install packages" for huge build. (Ozaki Kiichi, closes #9521) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,6 +63,7 @@ jobs: - uses: actions/checkout@v2 - name: Install packages + if: matrix.features == 'huge' run: | sudo apt update && sudo apt install -y \ autoconf \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4092, +/**/ 4091, /**/ 4090,